From 1bef48229e14fe4209c6483727d5f48d0a689167 Mon Sep 17 00:00:00 2001 From: Lauri Nurmi Date: Thu, 15 Feb 2024 12:02:26 +0200 Subject: [PATCH] Fix duplicate accelerator for the font dialog in dialogs sample Shift-Ctrl-N was already taken when it was added for the font dialog in 9b25ed0 (Add an accelerator for the font dialog in the dialogs sample, 2022-04-16). Use Shift-Ctrl-J instead. Closes #24324. --- samples/dialogs/dialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/dialogs/dialogs.cpp b/samples/dialogs/dialogs.cpp index c7805292c6..6857d973c0 100644 --- a/samples/dialogs/dialogs.cpp +++ b/samples/dialogs/dialogs.cpp @@ -433,7 +433,7 @@ bool MyApp::OnInit() #endif // wxUSE_COLOURDLG #if wxUSE_FONTDLG - choices_menu->Append(DIALOGS_CHOOSE_FONT, "Choose &font\tShift-Ctrl-N"); + choices_menu->Append(DIALOGS_CHOOSE_FONT, "Choose &font\tShift-Ctrl-J"); #endif // wxUSE_FONTDLG #if wxUSE_CHOICEDLG