edje_cc: parse "fixed" as bool
authorAndrii Kroitor <an.kroitor@samsung.com>
Fri, 27 Oct 2017 08:17:01 +0000 (11:17 +0300)
committerAndrii Kroitor <an.kroitor@samsung.com>
Mon, 30 Oct 2017 14:44:30 +0000 (16:44 +0200)
@fix

src/bin/edje/edje_cc_handlers.c

index 195be25..fa2cd8f 100644 (file)
@@ -9076,8 +9076,8 @@ st_collections_group_parts_part_description_fixed(void)
    check_has_anchors();
    check_arg_count(2);
 
-   current_desc->fixed.w = parse_float_range(0, 0, 1);
-   current_desc->fixed.h = parse_float_range(1, 0, 1);
+   current_desc->fixed.w = parse_bool(0);
+   current_desc->fixed.h = parse_bool(1);
 }
 
 /**