elm_conformant: fix migration side effect 97/191897/2
authorYeongjong Lee <yj34.lee@samsung.com>
Thu, 25 Oct 2018 05:48:01 +0000 (14:48 +0900)
committerYeongJong Lee <yj34.lee@samsung.com>
Thu, 25 Oct 2018 06:43:36 +0000 (06:43 +0000)
commit3eafd413f830e80336df2266e77b33b922a02ee1
tree9d277c05f35749175550147a92f315b35736ad94
parent25edeae171cbffd83be716c2ddb65a610ca2b9c3
elm_conformant: fix migration side effect

Some apps can't show indicator regardless of indicator mode.
This patch fixes that bug.

test case:
1)
win = elm_win_add();
elm_win_indicator_mode_set(win, ELM_WIN_INDICATOR_SHOW);
elm_win_indicator_opacity_set(win, ELM_WIN_INDICATOR_OPAQUE);
conf = elm_conformant_add(win);
2)
win = elm_win_add();
conf = elm_conformant_add(win);
elm_win_indicator_mode_set(win, ELM_WIN_INDICATOR_SHOW);
elm_win_indicator_opacity_set(win, ELM_WIN_INDICATOR_OPAQUE);

Change-Id: Ieb83b089fa9d809ac66cbab87830a6c5031cc2b1
src/lib/elementary/elm_conform.c