panel.edc: Fixed different behavior of right oriented panel.

When pressed in and released out of handle,
right oriented panel shows different behavior.

In addition, fixed highlight_show, highlight_hide signal like other orientation.
This commit is contained in:
Ryuan Choi 2013-04-11 20:26:05 +09:00 committed by Daniel Juyung Seo
parent b3ef18bb66
commit 7944ee2e0b
1 changed files with 3 additions and 3 deletions

View File

@ -924,19 +924,19 @@ group {
target: "btn_over3";
}
program { name: "btn_unclick3";
signal: "mouse,up,1";
signal: "mouse,clicked,1";
source: "btn_over2";
action: SIGNAL_EMIT "elm,action,panel,toggle" "";
}
program { name: "highlight_show";
signal: "elm,action,focus";
signal: "elm,action,focus_highlight,show";
source: "elm";
action: STATE_SET "enabled" 0.0;
transition: ACCELERATE 0.3;
target: "focus_highlight";
}
program { name: "highlight_hide";
signal: "elm,action,unfocus";
signal: "elm,action,focus_highlight,hide";
source: "elm";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.3;