diff options
author | jcid <devnull@localhost> | 2008-10-02 16:57:58 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-10-02 16:57:58 +0200 |
commit | 476f5e74c2a93b7893a44c34f5cd1e953242ea33 (patch) | |
tree | 7d6063a1d6e4ba4cc2823fcff3be99fba4116e54 /src/ui.cc | |
parent | ea461615f2b4a0a693aacd96435216b1dd2d53f9 (diff) |
- Made SHIFT + {Left, Right} work even with findbar focused.
Diffstat (limited to 'src/ui.cc')
-rw-r--r-- | src/ui.cc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -119,8 +119,11 @@ int CustInput::handle(int e) } else if (k == 'o' || k == 'r' || k == HomeKey || k == EndKey) return 0; } else if (modifier == SHIFT) { - if (k == LeftKey || k == RightKey) - return 0; + if (k == LeftKey || k == RightKey) { + _MSG(" CustInput::handle > SHIFT+RightKey\n"); + a_UIcmd_send_event_to_tabs_by_wid(e, this); + return 1; + } } } _MSG("\n"); |