win: Set window alpha when changing theme

This sets the window alpha back to 0 when switching from a theme
with alpha to one without. Thanks @bu5hm4n for asking about this.
This commit is contained in:
Jean-Philippe Andre 2016-07-18 18:09:32 +09:00
parent 03ec8204bf
commit d2fcfafb46
1 changed files with 9 additions and 1 deletions

View File

@ -5635,9 +5635,9 @@ _elm_win_theme_internal(Eo *obj, Efl_Ui_Win_Data *sd)
if (!ret) int_ret = ELM_THEME_APPLY_FAILED;
s = edje_object_data_get(sd->edje, "alpha");
if (!sd->theme_alpha)
{
s = edje_object_data_get(sd->edje, "alpha");
if (s)
{
if (!strcmp(s, "1") ||
@ -5648,6 +5648,14 @@ _elm_win_theme_internal(Eo *obj, Efl_Ui_Win_Data *sd)
}
}
}
else
{
if (!s || ((strcmp(s, "1") != 0) && (strcmp(s, "false") != 0)))
{
sd->theme_alpha = 0;
_elm_win_apply_alpha(obj, sd);
}
}
return int_ret;
}