fix flags assignment

This commit is contained in:
Julien Danjou 2008-01-11 15:19:18 +01:00
parent 860f811bb6
commit 3ed6ac2bdf
1 changed files with 1 additions and 2 deletions

View File

@ -185,8 +185,7 @@ taglist_new(Statusbar *statusbar, cfg_t *config)
w->button_press = taglist_button_press; w->button_press = taglist_button_press;
/* Set cache property */ /* Set cache property */
w->cache.flags = WIDGET_CACHE_TAGS; w->cache.flags = WIDGET_CACHE_TAGS | WIDGET_CACHE_CLIENTS;
w->cache.flags = WIDGET_CACHE_CLIENTS;
return w; return w;
} }