mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-09 09:40:58 +02:00
FIFOAnalyzer: fix command description updates
When dragging the selection, the mismatch between signal (itemSelectionChanged) and data consumed (currentRow) seemed to cause the description to lag behind by one row.
This commit is contained in:
@@ -117,8 +117,7 @@ void FIFOAnalyzer::CreateWidgets()
|
||||
void FIFOAnalyzer::ConnectWidgets()
|
||||
{
|
||||
connect(m_tree_widget, &QTreeWidget::itemSelectionChanged, this, &FIFOAnalyzer::UpdateDetails);
|
||||
connect(m_detail_list, &QListWidget::itemSelectionChanged, this,
|
||||
&FIFOAnalyzer::UpdateDescription);
|
||||
connect(m_detail_list, &QListWidget::currentRowChanged, this, &FIFOAnalyzer::UpdateDescription);
|
||||
|
||||
connect(m_search_edit, &QLineEdit::returnPressed, this, &FIFOAnalyzer::BeginSearch);
|
||||
connect(m_search_new, &QPushButton::clicked, this, &FIFOAnalyzer::BeginSearch);
|
||||
|
Reference in New Issue
Block a user