summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-05-06 19:57:17 +0200
committerwm4 <wm4@nowhere>2016-05-06 19:57:17 +0200
commit55846641eac86d55817be20eab00b8256a7e1c9a (patch)
tree0a5ecaad8fab59f4bbbc8208f65f1b6a6b4b0c55 /options
parent7c5188c27eacf4e13238f3621e015518c87bce10 (diff)
downloadmpv-55846641eac86d55817be20eab00b8256a7e1c9a.tar.bz2
mpv-55846641eac86d55817be20eab00b8256a7e1c9a.tar.xz
x11: add --x11-bypass-compositor=always
Also add missing documentation for fs-only, and correct the default.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 0487986f8f..b0d6fb7a30 100644
--- a/options/options.c
+++ b/options/options.c
@@ -461,7 +461,7 @@ const m_option_t mp_opts[] = {
OPT_CHOICE("x11-netwm", vo.x11_netwm, 0,
({"auto", 0}, {"no", -1}, {"yes", 1})),
OPT_CHOICE("x11-bypass-compositor", vo.x11_bypass_compositor, 0,
- ({"no", 0}, {"yes", 1}, {"fs-only", 2})),
+ ({"no", 0}, {"yes", 1}, {"fs-only", 2}, {"always", 3})),
#endif
#if HAVE_WIN32
OPT_STRING("vo-mmcss-profile", vo.mmcss_profile, M_OPT_FIXED),