From 91e8853535f5aaed1121019ebe8d50301e93fc5a Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Sun, 4 Aug 2013 17:52:54 +0900 Subject: [PATCH] elm_win.c: rename variable correctly. top_animate -> animate. --- legacy/elementary/src/lib/elm_win.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/elementary/src/lib/elm_win.c b/legacy/elementary/src/lib/elm_win.c index 154d158c96..ad76c08ecf 100644 --- a/legacy/elementary/src/lib/elm_win.c +++ b/legacy/elementary/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