UI Nits: Date Settings "un-scrunched"

.. no space in the layout of the date settings edit
dialog made all the options scrunched up. Just added
some 5px spacing to breath some air into it.
This commit is contained in:
Mark Liversedge
2013-03-15 21:18:10 +00:00
parent b71d532c9f
commit 0abcde16d4

View File

@@ -129,7 +129,7 @@ DateSettingsEdit::DateSettingsEdit(QWidget *parent) : parent(parent), active(fal
setContentsMargins(0,0,0,0);
QFormLayout *mainLayout = new QFormLayout(this);
mainLayout->setContentsMargins(0,0,0,0);
mainLayout->setSpacing(0);
mainLayout->setSpacing(5);
QFont sameFont;
#ifdef Q_OS_MAC