]> Dogcows Code - chaz/openbox/commitdiff
dont raise the window on a titlebar drag either
authorDana Jansens <danakj@orodu.net>
Wed, 19 Mar 2003 19:27:25 +0000 (19:27 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 19 Mar 2003 19:27:25 +0000 (19:27 +0000)
plugins/mouse/mouse.c

index cd2320a1c82d778ef06630a3a4787347f8acbdee..ae4cc60ba072c58e6bf6b9cb9724dade6b53bfb7 100644 (file)
@@ -368,10 +368,14 @@ static void binddef()
     a = action_new(action_resize);
     mbind("A-3", "frame", MouseAction_Motion, a);
 
-    a = action_new(action_focusraise);
+    a = action_new(action_focus);
     mbind("1", "titlebar", MouseAction_Press, a);
-    a = action_new(action_focusraise);
+    a = action_new(action_focus);
     mbind("1", "handle", MouseAction_Press, a);
+    a = action_new(action_raise);
+    mbind("1", "titlebar", MouseAction_Click, a);
+    a = action_new(action_raise);
+    mbind("1", "handle", MouseAction_Click, a);
     a = action_new(action_lower);
     mbind("2", "titlebar", MouseAction_Press, a);
     a = action_new(action_lower);
This page took 0.022864 seconds and 4 git commands to generate.