From b17542d2bf6fd5bc9b07778d1c1ba763c29413ca Mon Sep 17 00:00:00 2001 From: thrust26 Date: Fri, 6 Oct 2017 23:18:17 +0200 Subject: [PATCH] Makes 'Cancel' default in RomAuditDialog too --- src/gui/RomAuditDialog.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/RomAuditDialog.cxx b/src/gui/RomAuditDialog.cxx index ede1124f1..bbf834c3e 100644 --- a/src/gui/RomAuditDialog.cxx +++ b/src/gui/RomAuditDialog.cxx @@ -182,7 +182,8 @@ void RomAuditDialog::handleCommand(CommandSender* sender, int cmd, msg.push_back("audit, click 'OK', otherwise click 'Cancel'."); myConfirmMsg = make_unique (this, instance().frameBuffer().font(), msg, - myMaxWidth, myMaxHeight, kConfirmAuditCmd); + myMaxWidth, myMaxHeight, kConfirmAuditCmd, + "OK", "Cancel", false); } myConfirmMsg->show(); break;