]> Dogcows Code - chaz/openbox/blobdiff - plugins/mouse/mouse.c
read in the stacking order on startup, and use it to restore windows back to the...
[chaz/openbox] / plugins / mouse / mouse.c
index ea943f5a2820ac1a838efc4bf5a104ea4a82f660..01a3cf2a1ebf91557cbd9581b655aa14b85dfa6a 100644 (file)
@@ -9,6 +9,10 @@
 #include "mouse.h"
 #include <glib.h>
 
+void plugin_setup_config()
+{
+}
+
 static int drag_threshold = 3;
 
 /* GData of GSList*s of PointerBinding*s. */
@@ -372,15 +376,15 @@ static void binddef()
     mbind("1", "titlebar", MouseAction_Press, a);
     a = action_new(action_focus);
     mbind("1", "handle", MouseAction_Press, a);
-    a = action_new(action_raise);
+    a = action_new(action_focusraise);
     mbind("1", "titlebar", MouseAction_Click, a);
-    a = action_new(action_raise);
+    a = action_new(action_focusraise);
     mbind("1", "handle", MouseAction_Click, a);
     a = action_new(action_lower);
     mbind("2", "titlebar", MouseAction_Press, a);
     a = action_new(action_lower);
     mbind("2", "handle", MouseAction_Press, a);
-    a = action_new(action_raise);
+    a = action_new(action_focusraise);
     mbind("A-1", "frame", MouseAction_Click, a);
     a = action_new(action_lower);
     mbind("A-3", "frame", MouseAction_Click, a);
This page took 0.025979 seconds and 4 git commands to generate.