discomfitor pushed a commit to branch master.

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

commit 0f1ccdad095790d619c06ec8da02d829f1817047
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 d6f8ec1..c326ce9 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -9309,7 +9309,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