aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Lane Smith <cls@lubutu.com>2011-07-06 13:40:36 +0100
committerConnor Lane Smith <cls@lubutu.com>2011-07-06 13:40:36 +0100
commit5867c533909b8b6fd8318f307460e894ca8fee3b (patch)
treea3b75d452495584d331ccd87c8f974670c7e561e
parent34a816f87d382de2891ba2ed734e2de48ed0b357 (diff)
simpler vline
-rw-r--r--dmenu.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/dmenu.c b/dmenu.c
index 9b57565..aa9254f 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -330,8 +330,7 @@ keypress(XKeyEvent *ev) {
330 cursor = nextrune(-1); 330 cursor = nextrune(-1);
331 break; 331 break;
332 } 332 }
333 else if(lines > 0) 333 /* fallthrough */
334 return;
335 case XK_Up: 334 case XK_Up:
336 if(sel && sel->left && (sel = sel->left)->right == curr) { 335 if(sel && sel->left && (sel = sel->left)->right == curr) {
337 curr = prev; 336 curr = prev;
@@ -359,8 +358,7 @@ keypress(XKeyEvent *ev) {
359 cursor = nextrune(+1); 358 cursor = nextrune(+1);
360 break; 359 break;
361 } 360 }
362 else if(lines > 0) 361 /* fallthrough */
363 return;
364 case XK_Down: 362 case XK_Down:
365 if(sel && sel->right && (sel = sel->right) == next) { 363 if(sel && sel->right && (sel = sel->right) == next) {
366 curr = next; 364 curr = next;