1
0
mirror of git://git.suckless.org/dwm synced 2025-07-31 20:22:11 -07:00

Button3 click on mode label toggles stack position now

This commit is contained in:
Anselm R. Garbe
2006-10-05 09:37:11 +02:00
parent c8e57332d1
commit d9c475d7f4
2 changed files with 5 additions and 2 deletions

View File

@@ -126,6 +126,8 @@ buttonpress(XEvent *e) {
if(ev->x < x + bmw) {
if(ev->button == Button1)
togglemode(NULL);
else if(ev->button == Button3)
togglestackpos(NULL);
}
}
else if((c = getclient(ev->window))) {