discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=72f1dcc7482d7f84ed2b5967bd8f766f92f8831a
commit 72f1dcc7482d7f84ed2b5967bd8f766f92f8831a Author: Gwanglim Lee <[email protected]> Date: Thu May 8 11:28:14 2014 -0400 add missing eina_list_append in comp init Summary: add missing eina_list_append in comp init Test Plan: N/A Reviewers: raster, zmike, devilhorns CC: cedric Differential Revision: https://phab.enlightenment.org/D835 --- src/bin/e_comp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index e4c2a8f..93b8b98 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -1107,6 +1107,7 @@ e_comp_init(void) e_action_predef_name_set(N_("Compositor"), N_("Set current window opacity"), "opacity_set", "255", "syntax: number between 0-255 to set for transparent-opaque", 1); + actions = eina_list_append(actions, act); act = e_action_add("redirect_toggle"); act->func.go = _e_comp_act_redirect_toggle_go; e_action_predef_name_set(N_("Compositor"), --
