seoz pushed a commit to branch master.

commit 6b2c05fa397b586639ac633bf6441f79051621d4
Author: Daniel Juyung Seo <[email protected]>
Date:   Sun Aug 4 17:52:54 2013 +0900

    elm_win.c: rename variable correctly. top_animate -> animate.
---
 src/lib/elm_win.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index 154d158..ad76c08 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -124,7 +124,7 @@ struct _Elm_Win_Smart_Data
 
       Eina_Bool    enabled : 1;
       Eina_Bool    theme_changed : 1; /* set true when the focus theme is 
changed */
-      Eina_Bool    top_animate : 1;
+      Eina_Bool    animate : 1; /* set true when the focus highlight animate 
is enabled */
       Eina_Bool    geometry_changed : 1;
    } focus_highlight;
 
@@ -781,11 +781,11 @@ _elm_win_focus_highlight_reconfigure(Elm_Win_Smart_Data 
*sd)
         if (_elm_config->focus_highlight_animate)
           {
              str = edje_object_data_get(sd->focus_highlight.fobj, "animate");
-             sd->focus_highlight.top_animate = ((str) && (!strcmp(str, "on")));
+             sd->focus_highlight.animate = ((str) && (!strcmp(str, "on")));
           }
      }
 
-   if ((sd->focus_highlight.top_animate) && (previous) &&
+   if ((sd->focus_highlight.animate) && (previous) &&
        (!sd->focus_highlight.prev.handled))
      _elm_win_focus_highlight_anim_setup(sd, fobj);
    else

-- 

------------------------------------------------------------------------------
Get your SQL database under version control now!
Version control is standard for application code, but databases havent 
caught up. So what steps can you take to put your SQL databases under 
version control? Why should you start doing it? Read more to find out.
http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk

Reply via email to