diff options
author | Jens Bache-Wiig <jbache@trolltech.com> | 2010-04-15 17:09:23 +0200 |
---|---|---|
committer | Jens Bache-Wiig <jbache@trolltech.com> | 2010-04-15 17:10:17 +0200 |
commit | ad5dde3bfe6211aafb5281cd6e9a98b8fc8a4ef3 (patch) | |
tree | d516aa24b9306255b7aaac6d638f197cd9b30127 /src/plugins/coreplugin/outputpane.cpp | |
parent | 05badc8c3079bc1de8b8fded3d01d1a5f82a6fc3 (diff) | |
download | qt-creator-ad5dde3bfe6211aafb5281cd6e9a98b8fc8a4ef3.tar.gz |
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
Diffstat (limited to 'src/plugins/coreplugin/outputpane.cpp')
-rw-r--r-- | src/plugins/coreplugin/outputpane.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/coreplugin/outputpane.cpp b/src/plugins/coreplugin/outputpane.cpp index be80a2bcca..89903d7f6d 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 } |