From 2131bdf5b75fe11ed2e97958cbb5d4b00262db16 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 23 Jan 2013 10:57:02 +0100 Subject: options: make --fullscreen not a global option This was disabled in 4ea60a3 and 70c455a, when all options were still forced file local, and resetting fullscreen was annoyingly reset when switching to the next file. mpv keeps all options by default, so this isn't needed anymore. --- core/cfg-mplayer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/cfg-mplayer.h') diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h index fed5d999e2..1cb10d3463 100644 --- a/core/cfg-mplayer.h +++ b/core/cfg-mplayer.h @@ -594,8 +594,8 @@ const m_option_t mplayer_opts[]={ // video mode switching: (x11,xv,dga) OPT_MAKE_FLAGS("vm", vidmode, 0), // start in fullscreen mode: - OPT_MAKE_FLAGS("fullscreen", fullscreen, CONF_GLOBAL), - OPT_MAKE_FLAGS("fs", fullscreen, CONF_GLOBAL), + OPT_MAKE_FLAGS("fullscreen", fullscreen, 0), + OPT_MAKE_FLAGS("fs", fullscreen, 0), // set fullscreen switch method (workaround for buggy WMs) {"fsmode-dontuse", &vo_fsmode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL}, // set bpp (x11+vm) -- cgit v1.2.3