Browse Source

a small fix to buttonpress

master
Anselm R Garbe 17 years ago
parent
commit
d99ec61482
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dwm.c

+ 2
- 2
dwm.c View File

@ -291,8 +291,6 @@ applyrules(Client *c) {
}
}
void
arrange(void) {
unsigned int i;
@ -342,6 +340,8 @@ buttonpress(XEvent *e) {
if(ev->window == selview->barwin) {
x = 0;
for(i = 0; i < LENGTH(tags); i++) {
if(&views[vtags[i]] != selview)
continue;
x += textw(tags[i]);
if(ev->x < x) {
if(ev->button == Button1) {


Loading…
Cancel
Save