summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-10-29 12:52:02 -0400
committerGitHub <noreply@github.com>2020-10-29 12:52:02 -0400
commit752b1048dfaa7317dfccee80e171ee52b944c0ae (patch)
tree1ca87af1d6bd8fadf8388c900d2913b4357810ba /Source
parent6a3a71cfd732d7698327b7c8e7dd9e5125d681db (diff)
parent5fe7528855130d2226d9f1c03d7e5c879709d8e7 (diff)
Merge pull request #9196 from Dentomologist/update-register-view-debug-font
DolphinQt: Update register view font when Debug Font changes
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt/Debugger/RegisterWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp
index baab7f5159..d41d938cc3 100644
--- a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp
@@ -101,6 +101,7 @@ void RegisterWidget::ConnectWidgets()
connect(m_table, &QTableWidget::customContextMenuRequested, this,
&RegisterWidget::ShowContextMenu);
connect(m_table, &QTableWidget::itemChanged, this, &RegisterWidget::OnItemChanged);
+ connect(&Settings::Instance(), &Settings::DebugFontChanged, m_table, &QWidget::setFont);
}
void RegisterWidget::OnItemChanged(QTableWidgetItem* item)