Look for a close button when pressing the escape key.

This commit is contained in:
Felix Geyer 2015-05-03 19:59:11 +02:00
parent f3d956ceed
commit 6c9c0fd5c5

View File

@ -46,7 +46,9 @@ void DialogyWidget::keyPressEvent(QKeyEvent* e)
break;
case Qt::Key_Escape:
if (!clickButton(QDialogButtonBox::Cancel)) {
e->ignore();
if (!clickButton(QDialogButtonBox::Close)) {
e->ignore();
}
}
break;
default: