summaryrefslogtreecommitdiff
path: root/src/ui.cc
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-10-02 16:57:58 +0200
committerjcid <devnull@localhost>2008-10-02 16:57:58 +0200
commit476f5e74c2a93b7893a44c34f5cd1e953242ea33 (patch)
tree7d6063a1d6e4ba4cc2823fcff3be99fba4116e54 /src/ui.cc
parentea461615f2b4a0a693aacd96435216b1dd2d53f9 (diff)
- Made SHIFT + {Left, Right} work even with findbar focused.
Diffstat (limited to 'src/ui.cc')
-rw-r--r--src/ui.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ui.cc b/src/ui.cc
index 0aa33a4c..378fa335 100644
--- a/src/ui.cc
+++ b/src/ui.cc
@@ -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");