Makes 'Cancel' default in RomAuditDialog too

This commit is contained in:
thrust26 2017-10-06 23:18:17 +02:00
parent 8fa5ad502a
commit b17542d2bf
1 changed files with 2 additions and 1 deletions

View File

@ -182,7 +182,8 @@ void RomAuditDialog::handleCommand(CommandSender* sender, int cmd,
msg.push_back("audit, click 'OK', otherwise click 'Cancel'.");
myConfirmMsg = make_unique<GUI::MessageBox>
(this, instance().frameBuffer().font(), msg,
myMaxWidth, myMaxHeight, kConfirmAuditCmd);
myMaxWidth, myMaxHeight, kConfirmAuditCmd,
"OK", "Cancel", false);
}
myConfirmMsg->show();
break;