ui: fixed width of enter license window

* on windows the enter license window was too small so the entered key would have unwanted line breaks.
This commit is contained in:
mlangkabel
2017-10-24 12:22:22 +02:00
parent 0230852d60
commit c1e0e325f9
+1 -1
View File
@@ -19,7 +19,7 @@ QtLicenseWindow::QtLicenseWindow(QWidget *parent)
QSize QtLicenseWindow::sizeHint() const
{
return QSize(700, 500);
return QSize(740, 500);
}
void QtLicenseWindow::clear()