discomfitor pushed a commit to branch elementary-1.13. http://git.enlightenment.org/core/elementary.git/commit/?id=4913f715e8d2695dc9b78b73bfeeef1d69aa451e
commit 4913f715e8d2695dc9b78b73bfeeef1d69aa451e Author: Mike Blumenkrantz <[email protected]> Date: Wed Mar 18 10:53:56 2015 -0400 elm_win fullscreen setting on FAKE wins should just toggle the flag @fix --- src/lib/elm_win.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 54f61c9..57935f0 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -3912,6 +3912,8 @@ _elm_win_fullscreen_set(Eo *obj EINA_UNUSED, Elm_Win_Data *sd, Eina_Bool fullscr // these engines... can ONLY be fullscreen return; } + else if (sd->type == ELM_WIN_FAKE) + sd->fullscreen = !!fullscreen; else { // sd->fullscreen = fullscreen; --
