aboutsummaryrefslogtreecommitdiff
path: root/src/findbar.cc
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2011-05-18 14:05:55 -0400
committerJorge Arellano Cid <jcid@dillo.org>2011-05-18 14:05:55 -0400
commit6f569cdca6e2da6bbfb09152cd3006e22b8d2356 (patch)
tree4d8176dfc30cfb9bb906bc8cd4faffa8f86089b3 /src/findbar.cc
parent7f0e0e2d10099b8b81c8b43cc37a673fb5232989 (diff)
Made SHIFT+{Left,Right} keyboard events work from the findbar
Diffstat (limited to 'src/findbar.cc')
-rw-r--r--src/findbar.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/findbar.cc b/src/findbar.cc
index cb0b345b..02f9545b 100644
--- a/src/findbar.cc
+++ b/src/findbar.cc
@@ -36,10 +36,10 @@ int MyInput::handle(int e)
unsigned modifier = Fl::event_state() & (FL_SHIFT| FL_CTRL| FL_ALT|FL_META);
if (e == FL_KEYBOARD) {
- if (k == FL_Left || k == FL_Right) {
- if (modifier == FL_SHIFT) {
- a_UIcmd_send_event_to_tabs_by_wid(e, this);
- return 1;
+ if (modifier == FL_SHIFT) {
+ if (k == FL_Left || k == FL_Right) {
+ // Let these keys get to the UI
+ return 0;
}
} else if (k == FL_Escape && modifier == 0) {
// Avoid clearing the text with Esc, just hide the findbar.