efl_ui_win: simplify checking theme version when adding frame

Summary:
the win has no theme set, so this would always return null
Depends on D5956

Reviewers: cedric

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D5957
This commit is contained in:
Mike Blumenkrantz 2018-04-25 12:09:25 -04:00
parent 99fca5b01d
commit f37b96a1de
1 changed files with 1 additions and 1 deletions

View File

@ -4245,7 +4245,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(elm_widget_theme_get(sd->obj), "version");
version = elm_theme_data_get(NULL, "version");
v = version ? atoi(version) : 0;
if (EINA_LIKELY(v >= FRAME_OBJ_THEME_MIN_VERSION))
{