Revert "efl_ui_win: simplify checking theme version when adding frame"

Summary:
This reverts commit f37b96a1de.

as pointed out in D5957, this would break use of theme_set during the
efl_add constructor once this is implemented in the future

Reviewers: raster, cedric

Reviewed By: cedric

Subscribers: #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6146

Reviewed-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-05-25 10:14:36 -07:00 committed by Cedric BAIL
parent c5fae98de5
commit a0db6b351a
1 changed files with 1 additions and 1 deletions

View File

@ -4361,7 +4361,7 @@ _elm_win_frame_add(Efl_Ui_Win_Data *sd, const char *element, const char *style)
sd->frame_obj = edje_object_add(sd->evas);
// Verify theme version. Border requires an exact theme API.
version = elm_theme_data_get(NULL, "version");
version = elm_theme_data_get(elm_widget_theme_get(sd->obj), "version");
v = version ? atoi(version) : 0;
if (EINA_LIKELY(v >= FRAME_OBJ_THEME_MIN_VERSION))
{