Hi all, I have a AlertWindow Im defining like this:
int alertResult = j::AlertWindow::showOkCancelBox(j::AlertWindow::WarningIcon, TRANS("COPY/PASTE OVERLAPS"), infoString, TRANS("CANCEL"), TRANS("CONTINUE"), this);
if (alertResult==1)
I want to have the cancel button first here in this instance, but doing this means that pressing escape on the keyboard will continue rather than cancel. Is there a way to change the keypress of the buttons in the showOkCancelBox?
