remove delay for focus/desktop popups. its fast anyway any not showing it is annoying
Dana Jansens danakj@orodu.net
2 files changed,
5 insertions(+),
6 deletions(-)
M
openbox/focus.c
→
openbox/focus.c
@@ -318,10 +318,10 @@ " - ",
(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); } }
M
openbox/screen.c
→
openbox/screen.c
@@ -601,8 +601,7 @@ a->x + a->width / 2, a->y + a->height / 2);
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); } }