From a20c94e4991f6adea1a4e314886137ef78d6a690 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 30 Apr 2015 17:04:47 -0400 Subject: [PATCH] fix infinite loop when changing ibar sources fix T1951 --- src/modules/ibar/e_mod_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index 1e87a72c9..b885b6fc5 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -181,7 +181,10 @@ _ibar_order_refresh(IBar *b, const char *path) /* else same order, refresh all users */ } else - io = b->io = _ibar_order_new(b, path); + { + _ibar_order_del(b); + io = b->io = _ibar_order_new(b, path); + } EINA_LIST_FOREACH(io->bars, l, bar) { _ibar_empty(bar);