]> Dogcows Code - chaz/openbox/blobdiff - openbox/focus_cycle_indicator.c
skip enter events caused by temporarily raising windows during alt-tab. also caused...
[chaz/openbox] / openbox / focus_cycle_indicator.c
index 0aa65a75696019ecbab816a922597c1dfc49b8f3..7c5d5290539cb46c38d1bd95760e0ad59d3c7671 100644 (file)
@@ -158,6 +158,7 @@ void focus_cycle_draw_indicator(ObClient *c)
         */
         gint x, y, w, h;
         gint wt, wl, wr, wb;
+        gulong ignore_start;
 
         wt = wl = wr = wb = FOCUS_INDICATOR_WIDTH;
 
@@ -166,6 +167,9 @@ void focus_cycle_draw_indicator(ObClient *c)
         w = c->frame->area.width;
         h = wt;
 
+        /* kill enter events cause by this moving */
+        ignore_start = event_start_ignore_all_enters();
+
         XMoveResizeWindow(ob_display, focus_indicator.top.win,
                           x, y, w, h);
         a_focus_indicator->texture[0].data.lineart.x1 = 0;
@@ -270,6 +274,8 @@ void focus_cycle_draw_indicator(ObClient *c)
         XMapWindow(ob_display, focus_indicator.right.win);
         XMapWindow(ob_display, focus_indicator.bottom.win);
 
+        event_end_ignore_all_enters(ignore_start);
+
         visible = TRUE;
     }
 }
This page took 0.020125 seconds and 4 git commands to generate.