summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-16 23:07:13 +0100
committerwm4 <wm4@nowhere>2015-01-16 23:07:13 +0100
commitfc524e8a0704670d2e7daad36e54b66daf93e3d8 (patch)
treefe835d5156bbef228eb6036a390271f40bc1d16f /video/out/wayland_common.c
parent1883b7cc0c2844a903d51042861fca16eb3fad02 (diff)
downloadmpv-fc524e8a0704670d2e7daad36e54b66daf93e3d8.tar.bz2
mpv-fc524e8a0704670d2e7daad36e54b66daf93e3d8.tar.xz
command: unify handling of fullscreen and other VO flags
The "ontop" and "border" properties already used a common mp_property_vo_flag() function, and the corresponding VOCTRLs used the same conventions. "fullscreen" is pretty similar, but was handled slightly similar. Change how VOCTRL_FULLSCREEN behaves, and use the same helper function for "fullscreen" as the other flags.
Diffstat (limited to 'video/out/wayland_common.c')
-rw-r--r--video/out/wayland_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index bf318d7bbc..843049816e 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -1189,6 +1189,7 @@ int vo_wayland_control (struct vo *vo, int *events, int request, void *arg)
*events |= vo_wayland_check_events(vo);
return VO_TRUE;
case VOCTRL_FULLSCREEN:
+ vo->opts->fullscreen = !vo->opts->fullscreen;
vo_wayland_fullscreen(vo);
return VO_TRUE;
case VOCTRL_ONTOP: