| timplemented focusprev on button1 press in the bar, and focusnext on button3 pr… | |
| git clone git://src.adamsgaard.dk/dwm | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 8278f0a6befccfb4eb156cb312c69e032158734a | |
| parent d3969634ac3b2e145402295e9833ce149f87fe45 | |
| Author: Anselm R.Garbe <[email protected]> | |
| Date: Fri, 11 Aug 2006 09:16:40 +0200 | |
| implemented focusprev on button1 press in the bar, and focusnext on button3 pre… | |
| Diffstat: | |
| M event.c | 8 ++++++-- | |
| 1 file changed, 6 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/event.c b/event.c | |
| t@@ -103,15 +103,19 @@ buttonpress(XEvent *e) | |
| if(barwin == ev->window) { | |
| switch(ev->button) { | |
| - default: | |
| + case Button1: | |
| x = 0; | |
| for(a.i = 0; a.i < ntags; a.i++) { | |
| x += textw(tags[a.i]); | |
| if(ev->x < x) { | |
| view(&a); | |
| - break; | |
| + return; | |
| } | |
| } | |
| + focusprev(NULL); | |
| + break; | |
| + case Button3: | |
| + focusnext(NULL); | |
| break; | |
| case Button4: | |
| viewprev(&a); |