summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunghoon Park <jh9216.park@samsung.com>2017-01-03 10:25:44 +0900
committerJunghoon Park <jh9216.park@samsung.com>2017-01-03 10:25:44 +0900
commit39cbcf2218aafa82ccdc9cb460cc99ef06173f05 (patch)
treeec947e20a492ba172d5bf62ccdaa4f589f5f3cec
parentec9232b3100b07699bb217f3ddc167f67bbc722a (diff)
downloadapp-core-accepted/tizen_3.0.m2_mobile.tar.gz
app-core-accepted/tizen_3.0.m2_mobile.tar.bz2
app-core-accepted/tizen_3.0.m2_mobile.zip
- Because the main window is the first node, the sequence for nodes shound not be changed even though it is updated Change-Id: Idd6283d58f61d848e4be09e0808c4af044595f42 Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
-rw-r--r--src/appcore-efl.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/appcore-efl.c b/src/appcore-efl.c
index 81bda7e..f0161b3 100644
--- a/src/appcore-efl.c
+++ b/src/appcore-efl.c
@@ -684,14 +684,10 @@ static bool __update_win(unsigned int win, bool bfobscured)
return FALSE;
}
- g_winnode_list = g_slist_remove_link(g_winnode_list, f);
-
t = (struct win_node *)f->data;
t->win = win;
t->bfobscured = bfobscured;
- g_winnode_list = g_slist_concat(g_winnode_list, f);
-
return TRUE;
}
#elif defined(WAYLAND)
@@ -710,16 +706,12 @@ static bool __update_win(unsigned int win, unsigned int surf, bool bfobscured)
return FALSE;
}
- g_winnode_list = g_slist_remove_link(g_winnode_list, f);
-
t = (struct win_node *)f->data;
t->win = win;
if (surf != 0)
t->surf = surf;
t->bfobscured = bfobscured;
- g_winnode_list = g_slist_concat(g_winnode_list, f);
-
return TRUE;
}
#endif