]> Dogcows Code - chaz/openbox/commitdiff
fix focus flicker on sendto+follow
authorDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 15:20:48 +0000 (15:20 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 15:20:48 +0000 (15:20 +0000)
openbox/screen.c

index 3d3d73cd29f2f96aab8d66b1d9eca4e91301b212..d092ec288934bcd072b2b87ebf4364e4362859d8 100644 (file)
@@ -579,6 +579,11 @@ void screen_set_desktop(guint num, gboolean dofocus)
     allow_omni = focus_client && (client_normal(focus_client) &&
                                   focus_client->desktop == DESKTOP_ALL);
 
+    /* the client moved there already so don't move focus. prevent flicker
+       on sendtodesktop + follow */
+    if (focus_client && focus_client->desktop == screen_desktop)
+        dofocus = FALSE;
+
     /* have to try focus here because when you leave an empty desktop
        there is no focus out to watch for. also, we have different rules
        here. we always allow it to look under the mouse pointer if
This page took 0.027385 seconds and 4 git commands to generate.