From e9c4d4a56b8266fad336b85ea191840aa38756b6 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 4 Oct 2016 17:05:37 +0200 Subject: [PATCH] Debugger: Make icons in breakpoint view smaller again Change-Id: I05e68f5ab7004f063ba8577a78bad23a51a06330 Reviewed-by: Alessandro Portale --- src/plugins/debugger/debuggerplugin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 2e4a0133686..dd557524873 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1332,7 +1332,8 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments, m_logWindow->setObjectName(QLatin1String(DOCKWIDGET_OUTPUT)); m_breakHandler = new BreakHandler; - m_breakView = new BaseTreeView;; + m_breakView = new BaseTreeView; + m_breakView->setIconSize(QSize(10, 10)); m_breakView->setWindowIcon(Icons::BREAKPOINTS.icon()); m_breakView->setSelectionMode(QAbstractItemView::ExtendedSelection); connect(action(UseAddressInBreakpointsView), &QAction::toggled,