From d63abf5567d89d0977c24c8a18451d59ea301d1f Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 24 Apr 2017 14:08:35 +0200 Subject: [PATCH] Debugger: Fix snapshot view icon size Do what the other views do. Change-Id: I27a12715806b5d5f73aaa0b756bb08ef1a66a021 Reviewed-by: Christian Stenger --- src/plugins/debugger/debuggerplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index b71d8c72771..16825ffa0c7 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1398,6 +1398,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments, m_snapshotHandler = new SnapshotHandler; m_snapshotView = new SnapshotTreeView(m_snapshotHandler); m_snapshotView->setSettings(settings, "Debugger.SnapshotView"); + m_snapshotView->setIconSize(QSize(10, 10)); m_snapshotView->setModel(m_snapshotHandler->model()); m_snapshotWindow = addSearch(m_snapshotView, tr("Snapshots"), DOCKWIDGET_SNAPSHOTS);