removed hardcoded widths for dialogs, fixes #425

This commit is contained in:
itsmattkc
2019-02-04 02:33:43 +11:00
parent ee20048c65
commit 5ccabea208
3 changed files with 25 additions and 25 deletions
+1 -2
View File
@@ -7,8 +7,7 @@
DemoNotice::DemoNotice(QWidget *parent) :
QDialog(parent)
{
setWindowTitle(tr("Welcome to Olive!"));
setMaximumWidth(600);
setWindowTitle(tr("Welcome to Olive!"));
QVBoxLayout* vlayout = new QVBoxLayout(this);