edje_cc: parse "fixed" as bool

@fix
This commit is contained in:
Andrii Kroitor 2017-10-27 11:17:01 +03:00
parent 5e46c01001
commit 1df6fc19f1
1 changed files with 2 additions and 2 deletions

View 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);
}
/**