From 0d1abc0b6c9eb9d2751de061ef1de74948f4b8b2 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 28 Mar 2013 02:07:36 +0900 Subject: [PATCH] focus_highlight.edc: remove unused elm/focus_highlight/bottom/default group. This group can never be used in theory so this is not a theme api break. --- .../data/themes/widgets/focus_highlight.edc | 60 ------------------- 1 file changed, 60 deletions(-) diff --git a/legacy/elementary/data/themes/widgets/focus_highlight.edc b/legacy/elementary/data/themes/widgets/focus_highlight.edc index 42f8f7c0f4..064e7f592b 100644 --- a/legacy/elementary/data/themes/widgets/focus_highlight.edc +++ b/legacy/elementary/data/themes/widgets/focus_highlight.edc @@ -170,63 +170,3 @@ } } } - -/////////////////////////////////////////////////////////////////////////////// - group { name: "elm/focus_highlight/bottom/default"; - parts { - part { name: "shine"; - type: RECT; - mouse_events: 1; - repeat_events: 1; - ignore_flags: ON_HOLD; - description { state: "default" 0.0; - color: 0 255 0 50; - rel1.offset: 0 0; - rel2.offset: 0 0; - } - description { state: "disabled" 0.0; - inherit: "default" 0.0; - color: 0 0 0 0; - } - } - - program { name: "show"; - signal: "elm,action,focus,show"; - source: "elm"; - action: ACTION_STOP; - target: "hide"; - target: "hide_start"; - target: "hide_end"; - after: "show_start"; - } - program { name: "show_start"; - action: STATE_SET "default" 0.0; - transition: LINEAR 0.2; - target: "shine"; - after: "show_end"; - } - program { name: "show_end"; - action: SIGNAL_EMIT "elm,action,focus,show,end" ""; - } - program { name: "hide"; - signal: "elm,action,focus,hide"; - source: "elm"; - action: ACTION_STOP; - target: "show"; - target: "show_start"; - target: "show_end"; - after: "hide_start"; - } - program { name: "hide_start"; - action: STATE_SET "disabled" 0.0; - transition: LINEAR 0.2; - target: "shine"; - after: "hide_end"; - } - program { name: "hide_end"; - action: SIGNAL_EMIT "elm,action,focus,hide,end" ""; - } - } - } - -