diff options
| author | Dentomologist <dentomologist@gmail.com> | 2026-06-25 13:17:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-25 13:17:29 -0700 |
| commit | baf91d4436449ef9b7e5afe2988cbba0fcc60eb8 (patch) | |
| tree | c5a997d4ce5c5bad5d23210806f2e3bb72713cbb /Source | |
| parent | 54b93b8d4f145739b368f217aedc6ae1b8ddda36 (diff) | |
| parent | 158b8cfd7c0a3112d1f0860ba3147817964938f1 (diff) | |
Merge pull request #14591 from TryTwo/Registers_Fix
Debugger: Register Widget bug fix. Block updates when changing types
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/RegisterWidget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp index 6eb66435b0..de25c196a3 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<RegisterColumn*>(m_table->item(i, col)); update_item->SetDisplay(static_cast<RegisterDisplay>(action->data().toInt())); } + m_updating = false; }); } |
