Set 'Cancel' as the default button in the shutdown confirmation dialog.

This commit is contained in:
sledgehammer999 2014-08-23 23:22:47 +03:00
parent 7c80277c04
commit 58ad90fa9c

View file

@ -52,6 +52,8 @@ ShutdownConfirmDlg::ShutdownConfirmDlg(const shutDownAction &action): exit_now(N
setIcon(QMessageBox::Warning);
// Always on top
setWindowFlags(windowFlags()|Qt::WindowStaysOnTopHint);
// Set 'Cancel' as default button.
setDefaultButton(QMessageBox::Cancel);
timer.setInterval(1000); // 1sec
connect(&timer, SIGNAL(timeout()), this, SLOT(updateSeconds()));
show();