]> git.saurik.com Git - wxWidgets.git/commitdiff
The key event for the shift key should not start the cell editor
authorRobin Dunn <robin@alldunn.com>
Sat, 26 Feb 2005 03:16:46 +0000 (03:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 26 Feb 2005 03:16:46 +0000 (03:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32378 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 10c5b9d03067581503c096f4391c2aa49ff85e02..47190211460c7e982582c7540dd204315a7c9a30 100644 (file)
@@ -552,7 +552,7 @@ void wxGridCellEditor::HandleReturn(wxKeyEvent& event)
 bool wxGridCellEditor::IsAcceptedKey(wxKeyEvent& event)
 {
     // accept the simple key presses, not anything with Ctrl/Alt/Meta
-    return !(event.ControlDown() || event.AltDown());
+    return !(event.ControlDown() || event.AltDown() || event.GetKeyCode() == WXK_SHIFT);
 }
 
 void wxGridCellEditor::StartingKey(wxKeyEvent& event)