diff --git a/pages/samples/elm_min_size_control.txt b/pages/samples/elm_min_size_control.txt index c17318b9c..633a5fa8d 100644 --- a/pages/samples/elm_min_size_control.txt +++ b/pages/samples/elm_min_size_control.txt @@ -26,7 +26,7 @@ rec = evas_object_rectangle_add(evas_object_evas_get(win)); And set some custom size hinting on the rectangle: -evas_object_size_hint_min_set(rec, ELM_SCALE_SIZE(200), ELM_SCAIE_SIZE(300)); +evas_object_size_hint_min_set(rec, ELM_SCALE_SIZE(200), ELM_SCALE_SIZE(300)); And now pack it into the table. Do not show it or do anything else. Keep it hidden. This is your extra control point to adjust sizing of the entire table and its contents. Do not forget that weight and align also affect how the rectangle controls sizing.