hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=409d97f43c9ca7d41033d701e81150adf2feee06
commit 409d97f43c9ca7d41033d701e81150adf2feee06 Author: ChunEon Park <[email protected]> Date: Sat Feb 22 13:44:58 2014 +0900 panes - fix the panes view recovery. added missed signals in customized theme. --- data/themes/default/theme_ext.edc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/data/themes/default/theme_ext.edc b/data/themes/default/theme_ext.edc index 2895319..5a0c902 100644 --- a/data/themes/default/theme_ext.edc +++ b/data/themes/default/theme_ext.edc @@ -2199,4 +2199,18 @@ group { name: "elm/panes/vertical/enventor"; } } } + programs { + program { signal: "mouse,down,1"; source: "bar"; + action: SIGNAL_EMIT "elm,action,press" "elm"; + } + program { signal: "mouse,up,1"; source: "bar"; + action: SIGNAL_EMIT "elm,action,unpress" "elm"; + } + program { signal: "mouse,clicked,1"; source: "bar"; + action: SIGNAL_EMIT "elm,action,click" "elm"; + } + program { signal: "mouse,down,1,double"; source: "bar"; + action: SIGNAL_EMIT "elm,action,click,double" "elm"; + } + } } --
