rimmed pushed a commit to branch eflete-1.19.0. http://git.enlightenment.org/tools/eflete.git/commit/?id=3cf145071992bad2d81a52b4edeff0e888cadda3
commit 3cf145071992bad2d81a52b4edeff0e888cadda3 Author: Vyacheslav Reutskiy <[email protected]> Date: Mon Dec 11 13:37:48 2017 +0200 property: void serfault on set very big text size value TEXT part can apply size from range of 0 to 255 @fix @Fixes T6491 --- src/bin/ui/property/property_group.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/ui/property/property_group.c b/src/bin/ui/property/property_group.c index f7898a39b..a6fcf2382 100644 --- a/src/bin/ui/property/property_group.c +++ b/src/bin/ui/property/property_group.c @@ -984,6 +984,8 @@ _init_cb(Property_Attribute *pa, Property_Action *action) elm_spinner_min_max_set(action->control, 1, 9999); break; case ATTRIBUTE_STATE_TEXT_SIZE: + elm_spinner_min_max_set(action->control, 0, 255); + break; case ATTRIBUTE_STATE_MAP_PERSPECTIVE_ZPLANE: elm_spinner_min_max_set(action->control, 0, 9999); break; --
