From ad5dde3bfe6211aafb5281cd6e9a98b8fc8a4ef3 Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig <jbache@trolltech.com> Date: Thu, 15 Apr 2010 17:09:23 +0200 Subject: [PATCH] Reduce spacing in the statusbar for mac This was a workaround for an issue that is no longer present so we might as well use the same spacing --- src/plugins/coreplugin/outputpane.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/coreplugin/outputpane.cpp b/src/plugins/coreplugin/outputpane.cpp index be80a2bccaa..89903d7f6d5 100644 --- a/src/plugins/coreplugin/outputpane.cpp +++ b/src/plugins/coreplugin/outputpane.cpp @@ -251,11 +251,7 @@ OutputPaneManager::OutputPaneManager(QWidget *parent) : m_buttonsWidget = new QWidget; m_buttonsWidget->setLayout(new QHBoxLayout); m_buttonsWidget->layout()->setContentsMargins(5,0,0,0); -#ifdef Q_WS_MAC - m_buttonsWidget->layout()->setSpacing(16); -#else m_buttonsWidget->layout()->setSpacing(4); -#endif } -- GitLab