Summary:
When ecore_evas_window_profile_supported_get API return EINA_FALSE,
elm_win widget should not get profile from ecore_evas_window_profile_get API.
@fix
Reviewers: woohyun, Hermet, seoz
Reviewed By: seoz
Differential Revision: https://phab.enlightenment.org/D1943
ch_maximized = EINA_TRUE;
}
- profile = ecore_evas_window_profile_get(sd->ee);
- ch_profile = _internal_elm_win_profile_set(sd, profile);
+ if (ecore_evas_window_profile_supported_get(sd->ee))
+ {
+ profile = ecore_evas_window_profile_get(sd->ee);
+ ch_profile = _internal_elm_win_profile_set(sd, profile);
+ }
if (sd->wm_rot.use)
{