panes - fix the panes view recovery.

added missed signals in customized theme.
This commit is contained in:
ChunEon Park 2014-02-22 13:44:58 +09:00
parent bb22983b4b
commit 409d97f43c
1 changed files with 14 additions and 0 deletions

View File

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