samples: here one more same change to c72083daeb

This commit is contained in:
Hermet Park 2016-06-24 12:15:41 +09:00
parent 4f26d95172
commit 411b426a8a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ rec = evas_object_rectangle_add(evas_object_evas_get(win));
And set some custom size hinting on the rectangle:
<code c>
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));
</code>
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.