]> Dogcows Code - chaz/openbox/commitdiff
when undermouse is off, ignore enter events from windows lowering/raising themsvelves...
authorDana Jansens <danakj@orodu.net>
Mon, 4 Jun 2007 01:57:11 +0000 (01:57 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 4 Jun 2007 01:57:11 +0000 (01:57 +0000)
data/rc.xml
openbox/event.c

index 4e9b02a5d50ee5b5b6fb908550a9f1c8699565fc..0e801ef2fbc6dfebb7e27a0660ace5425ccaf11e 100644 (file)
@@ -26,7 +26,7 @@
        this many milliseconds (1000 = 1 sec) before moving focus to it -->
   <raiseOnFocus>no</raiseOnFocus>
   <!-- when followMouse is enabled, and a window is given focus by moving the
-       mouse into it, also raise the window -->
+s       mouse into it, also raise the window -->
 </focus>
 
 <placement>
index 9f1146a323bdff759e2c08d8bb4dc6ef442898a6..97b0da84e69309ebe1ca2921a4888e844760b755 100644 (file)
@@ -1064,6 +1064,7 @@ static void event_handle_client(ObClient *client, XEvent *e)
 
         if (e->xconfigurerequest.value_mask & CWStackMode) {
             ObClient *sibling = NULL;
+            gulong ignore_start;
 
             /* get the sibling */
             if (e->xconfigurerequest.value_mask & CWSibling) {
@@ -1075,9 +1076,13 @@ static void event_handle_client(ObClient *client, XEvent *e)
             }
 
             /* activate it rather than just focus it */
+            if (!config_focus_under_mouse)
+                ignore_start = event_start_ignore_all_enters();
             stacking_restack_request(client, sibling,
                                      e->xconfigurerequest.detail,
                                      TRUE);
+            if (!config_focus_under_mouse)
+                event_end_ignore_all_enters(ignore_start);
 
             /* if a stacking change moves the window without resizing */
             move = TRUE;
@@ -1420,9 +1425,16 @@ static void event_handle_client(ObClient *client, XEvent *e)
                     e->xclient.data.l[2] == TopIf ||
                     e->xclient.data.l[2] == Opposite)
                 {
+                    gulong ignore_start;
+
+                    if (!config_focus_under_mouse)
+                        ignore_start = event_start_ignore_all_enters();
                     /* just raise, don't activate */
                     stacking_restack_request(client, sibling,
                                              e->xclient.data.l[2], FALSE);
+                    if (!config_focus_under_mouse)
+                        event_end_ignore_all_enters(ignore_start);
+
                     /* send a synthetic ConfigureNotify, cuz this is supposed
                        to be like a ConfigureRequest. */
                     client_reconfigure(client);
This page took 0.02522 seconds and 4 git commands to generate.