From 30017632dd5ea01bd1f2f790c7e3589375b058c8 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 17 Aug 2025 12:15:33 +0100 Subject: [PATCH] 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. --- Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp index 396532ef69..ae06a30dfc 100644 --- a/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp +++ b/Source/Core/DolphinQt/FIFO/FIFOAnalyzer.cpp @@ -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);