diff options
author | Cedric BAIL <cedric@ddlm.me> | 2019-03-13 17:21:51 -0700 |
---|---|---|
committer | Cedric BAIL <cedric@ddlm.me> | 2019-03-13 17:21:51 -0700 |
commit | 0f1d9a77e568bf94b4d502afd898ce0cc31b2a18 (patch) | |
tree | 392bb05601781c1137de8e5d468eab962c32da1c /src/bin/widgets_list_2_grouped.c | |
parent | 00ffe9ca86892124d2110c9f74d1f3b5e0d9bd47 (diff) |
efl: migrate to the new efl_gfx_stack_raise_to_top and efl_gfx_stack_lower_to_bottom.
Diffstat (limited to 'src/bin/widgets_list_2_grouped.c')
-rw-r--r-- | src/bin/widgets_list_2_grouped.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/widgets_list_2_grouped.c b/src/bin/widgets_list_2_grouped.c index 028321e..fda638a 100644 --- a/src/bin/widgets_list_2_grouped.c +++ b/src/bin/widgets_list_2_grouped.c | |||
@@ -78,11 +78,11 @@ static void _setup(void) | |||
78 | } | 78 | } |
79 | for (i = 0; i < NUM; i++) | 79 | for (i = 0; i < NUM; i++) |
80 | { | 80 | { |
81 | efl_gfx_stack_raise(o_images[i]); | 81 | efl_gfx_stack_raise_to_top(o_images[i]); |
82 | } | 82 | } |
83 | for (i = 0; i < NUM; i++) | 83 | for (i = 0; i < NUM; i++) |
84 | { | 84 | { |
85 | efl_gfx_stack_raise(o_texts[i]); | 85 | efl_gfx_stack_raise_to_top(o_texts[i]); |
86 | } | 86 | } |
87 | done = 0; | 87 | done = 0; |
88 | } | 88 | } |