summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-01-10 12:57:48 +0100
committerTim Blechmann <tim@klingt.org>2019-01-10 13:36:49 +0000
commitfc58cb88c0623a3c0d083b2af9ab826e6bd308ff (patch)
tree888e24e738deb3d65d101d727389b87640156aee
parent6439b5f52e5b89e6c99b18cadd308e3d627b0eba (diff)
downloadqt-creator-fc58cb88c0623a3c0d083b2af9ab826e6bd308ff.tar.gz
Debugger: Fix "Debugger font size follows main editor"
... for the ex-snapshot-now-engine-manager view. Task-number: QTCREATORBUG-21803 Change-Id: I0c0a6199fa1dabc5c045fe6d0740de458dc63cda Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Tim Blechmann <tim@klingt.org>
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 3f7b01d2bd..2f10ef7126 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1363,7 +1363,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments,
font.setPointSizeF(size);
m_breakpointManagerWindow->setFont(font);
m_globalLogWindow->setFont(font);
-// m_snapshotWindow->setFont(font);
+ m_engineManagerWindow->setFont(font);
});