From efe2190fa74270ae53c3c76c3e52378008814ca5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 8 Dec 2009 16:35:54 +0000 Subject: [PATCH] Fix duplicate accelerator use in animate sample. Both "Play" and "Stop" used Ctrl+P. Closes #11425. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/animate/anitest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/animate/anitest.cpp b/samples/animate/anitest.cpp index d2f5bef31a..6d4a4ecb00 100644 --- a/samples/animate/anitest.cpp +++ b/samples/animate/anitest.cpp @@ -133,7 +133,7 @@ MyFrame::MyFrame(wxWindow *parent, wxMenu *play_menu = new wxMenu; play_menu->Append(ID_PLAY, wxT("Play\tCtrl+P"), wxT("Play the animation")); - play_menu->Append(wxID_STOP, wxT("Stop\tCtrl+P"), wxT("Stop the animation")); + play_menu->Append(wxID_STOP, wxT("Stop\tCtrl+S"), wxT("Stop the animation")); play_menu->AppendSeparator(); play_menu->Append(ID_SET_NULL_ANIMATION, wxT("Set null animation"), wxT("Sets the empty animation in the control")); -- 2.47.2