We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd01138 commit 85d499aCopy full SHA for 85d499a
src/Gui/Background/BackgroundWidget.cpp
@@ -66,7 +66,11 @@ BackgroundWidget::BackgroundWidget(QWidget * parent) :
66
imageRefreshButton_->setStatusTip(tr("Reload background image(s) to reflect changes on disk."));
67
imageRefreshButton_->setMaximumWidth(30);
68
QHBoxLayout * imagesLayout = new QHBoxLayout();
69
+#ifdef Q_OS_MAC
70
+ imagesLayout->setSpacing(10);
71
+#else
72
imagesLayout->setSpacing(0);
73
+#endif
74
imagesLayout->addWidget(imageLineEdit_);
75
imagesLayout->addWidget(imageBrowseButton_);
76
imagesLayout->addWidget(imageRefreshButton_);
0 commit comments