From 8950ac9a3fdf77a5f29cb12049e9187d37c95317 Mon Sep 17 00:00:00 2001 From: Artur Wieczorek Date: Fri, 3 Mar 2017 21:08:53 +0100 Subject: [PATCH] Change keyboard shortcut to show bounding box in drawing sample Ctrl-B shortcut is already used to change background mode. --- samples/drawing/drawing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/drawing/drawing.cpp b/samples/drawing/drawing.cpp index 82648f24e1..62ff65f4b1 100644 --- a/samples/drawing/drawing.cpp +++ b/samples/drawing/drawing.cpp @@ -2095,7 +2095,7 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) #endif // __WXMSW__ #endif // wxUSE_GRAPHICS_CONTEXT menuFile->AppendSeparator(); - menuFile->AppendCheckItem(File_BBox, wxS("Show bounding box\tCtrl-B"), + menuFile->AppendCheckItem(File_BBox, wxS("Show bounding box\tCtrl-E"), wxS("Show extents used in drawing operations")); menuFile->AppendCheckItem(File_Clip, wxT("&Clip\tCtrl-C"), wxT("Clip/unclip drawing")); menuFile->AppendCheckItem(File_Buffer, wxT("&Use wx&BufferedPaintDC\tCtrl-Z"), wxT("Buffer painting"));