Increased server shutdown limit
Added a max of 999 mins for the server shutdown to the gui.
This commit is contained in:
parent
544666a3bc
commit
085eb0f2fa
1 changed files with 1 additions and 0 deletions
|
@ -24,6 +24,7 @@ ShutdownDialog::ShutdownDialog(QWidget *parent)
|
|||
minutesLabel->setBuddy(minutesEdit);
|
||||
minutesEdit->setMinimum(0);
|
||||
minutesEdit->setValue(5);
|
||||
minutesEdit->setMaximum(999);
|
||||
|
||||
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
||||
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
|
||||
|
|
Loading…
Reference in a new issue