From 9b25ed038afbbfad9581263a5f65232fabb02879 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 16 Apr 2022 16:40:49 +0100 Subject: [PATCH] Add an accelerator for the font dialog in the dialogs sample No real changes, just make it faster to bring up the font dialog for testing. --- 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 637e999db4..c12adb2731 100644 --- a/samples/dialogs/dialogs.cpp +++ b/samples/dialogs/dialogs.cpp @@ -432,7 +432,7 @@ bool MyApp::OnInit() #endif // wxUSE_COLOURDLG #if wxUSE_FONTDLG - choices_menu->Append(DIALOGS_CHOOSE_FONT, "Choose &font"); + choices_menu->Append(DIALOGS_CHOOSE_FONT, "Choose &font\tShift-Ctrl-N"); #endif // wxUSE_FONTDLG #if wxUSE_CHOICEDLG