From d04ce8a7c230c8deb81fdf2a0c17d70c499ba77e Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 26 May 2014 21:54:00 +0200 Subject: x11: fix restoring position when leaving fullscreen Accidentally broken in commit 7163bf7d by inverting the condition. --- video/out/x11_common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/video/out/x11_common.c b/video/out/x11_common.c index 37855efa4e..6ca8be01f2 100644 --- a/video/out/x11_common.c +++ b/video/out/x11_common.c @@ -1412,7 +1412,8 @@ static void vo_x11_fullscreen(struct vo *vo) if (x11->wm_type & vo_wm_FULLSCREEN) { x11_set_ewmh_state(x11, "_NET_WM_STATE_FULLSCREEN", x11->fs); - if (x11->fs && (x11->pos_changed_during_fs || x11->size_changed_during_fs)) + if (!x11->fs && (x11->pos_changed_during_fs || + x11->size_changed_during_fs)) { vo_x11_move_resize(vo, x11->pos_changed_during_fs, x11->size_changed_during_fs, -- cgit v1.2.3