mirror of https://github.com/stella-emu/stella.git
Makes 'Cancel' default in RomAuditDialog too
This commit is contained in:
parent
8fa5ad502a
commit
b17542d2bf
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue