billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=1f6bfe3323bbaa8b80166f8c6237bb781a49f6df
commit 1f6bfe3323bbaa8b80166f8c6237bb781a49f6df Author: Boris Faure <[email protected]> Date: Sun Oct 18 23:16:36 2020 +0200 theme: use theme_file if provided Fixed theme ui --- src/bin/theme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/theme.c b/src/bin/theme.c index cc65fad..d8aa1d5 100644 --- a/src/bin/theme.c +++ b/src/bin/theme.c @@ -72,14 +72,14 @@ theme_apply(Evas_Object *obj, { edje = elm_layout_edje_get(obj); - if (elm_layout_file_set(obj, config_theme_path_get(config), group)) + if (elm_layout_file_set(obj, theme_path, group)) goto done; if (elm_layout_file_set(obj, theme_path_default_get(), group)) goto done; } else { - if (edje_object_file_set(edje, config_theme_path_get(config), group)) + if (edje_object_file_set(edje, theme_path, group)) goto done; if (edje_object_file_set(edje, theme_path_default_get(), group)) goto done; --
