mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-16 15:35:44 +00: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:
parent
2e09dc0fdd
commit
30017632dd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user