diff options
-rw-r--r-- | video/out/x11_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, |