]> Dogcows Code - chaz/openbox/commitdiff
remove delay for focus/desktop popups. its fast anyway any not showing it is annoying
authorDana Jansens <danakj@orodu.net>
Wed, 2 May 2007 23:43:36 +0000 (23:43 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 2 May 2007 23:43:36 +0000 (23:43 +0000)
openbox/focus.c
openbox/screen.c

index c9c1895539d101b1e31bbe416ea921eb5c71c758..8fcb13f93d4bb01b0453cb199a0966d046984d42 100644 (file)
@@ -318,10 +318,10 @@ static void popup_cycle(ObClient *c, gboolean show)
                                 (p->iconic ? p->icon_title : p->title),
                                 NULL);
             */
-        icon_popup_delay_show(focus_cycle_popup, G_USEC_PER_SEC/12,
-                              (title ? title :
-                               (c->iconic ? c->icon_title : c->title)),
-                              client_icon(p, 48, 48));
+        icon_popup_show(focus_cycle_popup,
+                        (title ? title :
+                         (c->iconic ? c->icon_title : c->title)),
+                        client_icon(p, 48, 48));
         g_free(title);
     }
 }
index 25b7a46d0f918d49771e6f78bd0002bd15e44d89..a302828baf1a7a293d87dc995e6efce2cbb687a5 100644 (file)
@@ -601,8 +601,7 @@ void screen_desktop_popup(guint d, gboolean show)
         pager_popup_width(desktop_cycle_popup, MAX(a->width/3, POPUP_WIDTH));
         pager_popup_height(desktop_cycle_popup, POPUP_HEIGHT);
 
-        pager_popup_delay_show(desktop_cycle_popup, G_USEC_PER_SEC/12,
-                               screen_desktop_names[d], d);
+        pager_popup_show(desktop_cycle_popup, screen_desktop_names[d], d);
     }
 }
 
This page took 0.026096 seconds and 4 git commands to generate.