diff options
| -rw-r--r-- | apps/tree.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c index db39e83..d932094 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -305,6 +305,9 @@ void tree_gui_init(void) /* drawer function for the GUI_EVENT_REDRAW callback */ void tree_drawlists(void) { + /* band-aid to fix the bar/list redrawing properly after leaving a plugin */ + send_event(GUI_EVENT_THEME_CHANGED, NULL); + /* end bandaid */ gui_synclist_draw(&tree_lists); } |