diff options
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 302c0b210..2b23bd5da 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -157,9 +157,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), } } // QLineEdit and QLabels should have minimal margin on the left and right but not waste vertical space - QMargins margins(1, 0, 1, 0); - ui.location->setContentsMargins(margins); - ui.suit->setContentsMargins(margins); + QMargins margins(3, 2, 1, 0); Q_FOREACH (QLabel *label, findChildren<QLabel *>()) { label->setContentsMargins(margins); } |