From 158b8cfd7c0a3112d1f0860ba3147817964938f1 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Mon, 13 Apr 2026 23:46:44 -0700 Subject: [PATCH] Debugger: Register Widget bug fix. Block updates when changing column data type. --- Source/Core/DolphinQt/Debugger/RegisterWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp index 84b7e7b74f..249a484e3c 100644 --- a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp @@ -283,12 +283,14 @@ void RegisterWidget::ShowContextMenu() view_double_column}) { connect(action, &QAction::triggered, [this, action] { + m_updating = true; auto col = m_table->currentItem()->column(); for (int i = 0; i < 32; i++) { auto* update_item = static_cast(m_table->item(i, col)); update_item->SetDisplay(static_cast(action->data().toInt())); } + m_updating = false; }); }