summaryrefslogtreecommitdiff
path: root/src/ui.cc
diff options
context:
space:
mode:
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");