Made about box bigger on Mac because the font appears slightly bigger.

This commit is contained in:
Doug Brown 2012-05-26 14:58:35 -07:00
parent 7bf37d25fc
commit 6ceea8c22d
1 changed files with 3 additions and 0 deletions

View File

@ -37,6 +37,9 @@ AboutBox::AboutBox(QWidget *parent) :
ui(new Ui::AboutBox)
{
ui->setupUi(this);
#ifdef Q_OS_MACX
resize(width() + 50, height() + 100);
#endif
ui->versionLabel->setText("Version " VERSION_STRING);
}