Skip to content

Commit

Permalink
OS X: fixed conflict with Spaces by allowing Cmd-arrows to be used fo…
Browse files Browse the repository at this point in the history
…r list control navigation in addition to Ctrl-arrows
  • Loading branch information
vslavik committed Feb 17, 2008
1 parent d3302ae commit 558823a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS
@@ -1,6 +1,9 @@

- wxWidgets >= 2.8 is now required
- don't show comments windows by default to avoid confusion
- OS X: fixed conflict with 10.5's Spaces - Command-arrows can now be used
to navigate in the list control in addition to Ctrl-arrows


Version 1.3.9
-------------
Expand Down
2 changes: 1 addition & 1 deletion src/edframe.cpp
Expand Up @@ -164,7 +164,7 @@ class TextctrlHandler : public wxEvtHandler
{
int keyCode = event.GetKeyCode();

if (!event.ControlDown())
if (!(event.ControlDown() || event.CmdDown()))
{
event.Skip();
return;
Expand Down

0 comments on commit 558823a

Please sign in to comment.