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.
This commit is contained in:
Daniel Juyung Seo 2013-03-28 02:07:36 +09:00
parent 15c1c2d377
commit 0d1abc0b6c
1 changed files with 0 additions and 60 deletions

View File

@ -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" "";
}
}
}