# HG changeset patch # User Anselm R. Garbe # Date 1160033831 -7200 # Node ID 834a77509a6473805e442bfc62263a446fcd7daf # Parent 6cad48068e4c34dc53facb5b3a9f6c550a1b24ce Button3 click on mode label toggles stack position now diff -r 6cad48068e4c -r 834a77509a64 dwm.1 --- a/dwm.1 Fri Sep 29 19:06:27 2006 +0200 +++ b/dwm.1 Thu Oct 05 09:37:11 2006 +0200 @@ -40,7 +40,8 @@ label toggles between tiled and floating mode. .TP .B Button3 -click on a tag label adds/removes all windows with that tag to/from the view. +click on a tag label adds/removes all windows with that tag to/from the view, +click on the mode label toggles the stack position (tiled mode). .TP .B Mod1-Button1 click on a tag label applies that tag to the focused window. @@ -63,7 +64,7 @@ Zooms/cycles current window to/from master area (tiling mode), toggles maximization current window (floating mode). .TP .B Mod1-b -Toggle stacking area position (tiling mode only). +Toggle stack position (tiling mode only). .TP .B Mod1-g Grow current area (tiling mode only). diff -r 6cad48068e4c -r 834a77509a64 event.c --- a/event.c Fri Sep 29 19:06:27 2006 +0200 +++ b/event.c Thu Oct 05 09:37:11 2006 +0200 @@ -126,6 +126,8 @@ if(ev->x < x + bmw) { if(ev->button == Button1) togglemode(NULL); + else if(ev->button == Button3) + togglestackpos(NULL); } } else if((c = getclient(ev->window))) {