discomfitor pushed a commit to branch efl-1.9.

http://git.enlightenment.org/core/efl.git/commit/?id=b35d1af4d72527c6f2803484bdd49979fb7bb48f

commit b35d1af4d72527c6f2803484bdd49979fb7bb48f
Author: Mike Blumenkrantz <zm...@samsung.com>
Date:   Thu Mar 20 19:19:50 2014 -0400

    edje_cc now correctly handles lack of state int in STATE_SET action
    
    @fix
---
 src/bin/edje/edje_cc_handlers.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index 3d7a43f..18a7463 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -9171,7 +9171,7 @@ st_collections_group_programs_program_action(void)
    if (ep->action == EDJE_ACTION_TYPE_STATE_SET)
      {
        ep->state = parse_str(1);
-       if (get_arg_count() == 1)
+       if (get_arg_count() == 2)
          ep->value = 0.0;
        else
          ep->value = parse_float_range(2, 0.0, 1.0);

-- 


Reply via email to