dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit c53f0fca912e05cddcfbf79d99678b16d183c67d
parent c225e1afc23e6862f9864bad3b7b11399dda36a1
Author: Anselm R.Garbe <arg@10ksloc.org>
Date:   Wed,  9 Aug 2006 18:37:33 +0200

added zoom on Mod1-Button1 on managed clients only (there is no moving possible)

Diffstat:
Mevent.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/event.c b/event.c
@@ -131,6 +131,8 @@ buttonpress(XEvent *e)
                 higher(c);
                 movemouse(c);
             }
+            else
+                zoom(NULL);
             break;
         case Button2:
             lower(c);