diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-08-28 21:11:11 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-09-05 11:17:04 +0200 |
commit | 605d04a302e709692aaa6c9b3d1aa2d76cd2d36e (patch) | |
tree | 0c318325a41b4688b44a0ff16cad35372bbe1419 /src/examples/elementary | |
parent | 7915aafedda6cb663f185eaa97c187c03eb1a907 (diff) |
efl_ui_collection: use the correct min size hint
there are not enough size hints, we should add more!
I mixed up which size hints i should have used here, after some back and
forth it turns out that i should use the combined. This fixes the list
example.
Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Differential Revision: https://phab.enlightenment.org/D9779
Diffstat (limited to 'src/examples/elementary')
-rw-r--r-- | src/examples/elementary/efl_ui_list_example_1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/examples/elementary/efl_ui_list_example_1.c b/src/examples/elementary/efl_ui_list_example_1.c index 81d378b..5cadb29 100644 --- a/src/examples/elementary/efl_ui_list_example_1.c +++ b/src/examples/elementary/efl_ui_list_example_1.c | |||
@@ -315,6 +315,7 @@ elm_main(int argc EINA_UNUSED, char **argv) | |||
315 | elm_win_resize_object_add(win, wbox); | 315 | elm_win_resize_object_add(win, wbox); |
316 | //window show | 316 | //window show |
317 | efl_gfx_entity_visible_set(win, EINA_TRUE); | 317 | efl_gfx_entity_visible_set(win, EINA_TRUE); |
318 | efl_gfx_entity_size_set(win, EINA_SIZE2D(417, 600)); | ||
318 | 319 | ||
319 | elm_run(); | 320 | elm_run(); |
320 | 321 | ||