devilhorns pushed a commit to branch master. http://git.enlightenment.org/apps/express.git/commit/?id=89499cd64290b9434f9b413b465fe4be9997ff3a
commit 89499cd64290b9434f9b413b465fe4be9997ff3a Author: Christopher Michael <devilho...@comcast.net> Date: Wed Jan 27 10:27:09 2021 -0500 express: Update window when all config option windows are closed This allows us to only have to redraw the window once when the user is done with configure --- src/bin/options.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/options.c b/src/bin/options.c index e19cf3a..a4b493a 100644 --- a/src/bin/options.c +++ b/src/bin/options.c @@ -6,6 +6,7 @@ #include "options_video.h" #include "options_networks.h" #include "options_tools.h" +#include "window.h" /* local variables */ static Evas_Object *o_win = NULL; @@ -56,6 +57,8 @@ _cb_del_delay(void *data EINA_UNUSED) _opts_del_timer = NULL; elm_cache_all_flush(); + _window_update(); + return EINA_FALSE; } --