diff options
author | Eike Ziller <eike.ziller@qt.io> | 2016-09-20 15:59:48 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@qt.io> | 2016-09-21 10:02:22 +0000 |
commit | 39555d3b86822e9610ddba1cd80befabcacdbf6f (patch) | |
tree | 1867bd9347a45179ca17e4f9d484ffe264b940a5 /src/plugins/projectexplorer/compileoutputwindow.cpp | |
parent | 29dffc75ab354234940471b7e74af51943a7bcd6 (diff) | |
download | qt-creator-39555d3b86822e9610ddba1cd80befabcacdbf6f.tar.gz |
Projects mode: Make plus icon dark and get rid of branch indicators
The PLUS icon was actually PLUS_TOOLBAR, so name it that way and add an
actual PLUS icon.
Remove the drawing of the branch indicators from the kit tree view by
overriding the method that does it.
Change-Id: I395e5187c1738faaee3e122b4f3f359261b514d7
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/compileoutputwindow.cpp')
-rw-r--r-- | src/plugins/projectexplorer/compileoutputwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/compileoutputwindow.cpp b/src/plugins/projectexplorer/compileoutputwindow.cpp index 0555584951..31d22f0d15 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.cpp +++ b/src/plugins/projectexplorer/compileoutputwindow.cpp @@ -170,7 +170,7 @@ CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) : Utils::Icons::STOP_SMALL_TOOLBAR.icon()); m_cancelBuildButton->setDefaultAction(cancelBuildProxyButton); m_zoomInButton->setToolTip(tr("Increase Font Size")); - m_zoomInButton->setIcon(Utils::Icons::PLUS.icon()); + m_zoomInButton->setIcon(Utils::Icons::PLUS_TOOLBAR.icon()); m_zoomOutButton->setToolTip(tr("Decrease Font Size")); m_zoomOutButton->setIcon(Utils::Icons::MINUS.icon()); |