summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-10-05 18:07:27 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-10-05 18:07:27 +0200
commitc6b68c28f438f6f0f4e6b92782991211d868b858 (patch)
tree7bb9b47a493df9a2ad7a18ca30b8bf0d4e6c7d38 /options
parent79688144704dd93169d86cc5a75385604e88c72c (diff)
downloadmpv-c6b68c28f438f6f0f4e6b92782991211d868b858.tar.bz2
mpv-c6b68c28f438f6f0f4e6b92782991211d868b858.tar.xz
cocoa: remove --fs-missioncontrol
This is the first of a series of commits that will change the Cocoa way in a way that is easily embeddable inside parent views. To reach that point common code must avoid referencing the parent NSWindow since that could be the host application's window.
Diffstat (limited to 'options')
-rw-r--r--options/m_config.c1
-rw-r--r--options/options.c4
-rw-r--r--options/options.h2
3 files changed, 0 insertions, 7 deletions
diff --git a/options/m_config.c b/options/m_config.c
index c0ebd3cf70..46af3446a3 100644
--- a/options/m_config.c
+++ b/options/m_config.c
@@ -975,7 +975,6 @@ static const char *const replaced_opts =
"|right-alt-gr#--input-right-alt-gr"
"|autosub#--sub-auto"
"|autosub-match#--sub-auto"
- "|native-fs#--fs-missioncontrol"
"|status-msg#--term-status-msg"
"|idx#--index"
"|forceidx#--index"
diff --git a/options/options.c b/options/options.c
index a6cb4eb45f..af30a584b9 100644
--- a/options/options.c
+++ b/options/options.c
@@ -443,10 +443,6 @@ const m_option_t mp_opts[] = {
OPT_CHOICE_OR_INT("fs-screen", vo.fsscreen_id, 0, 0, 32,
({"all", -2}, {"current", -1})),
-#if HAVE_COCOA
- OPT_FLAG("fs-missioncontrol", vo.fs_missioncontrol, 0),
-#endif
-
OPT_INTRANGE("brightness", gamma_brightness, 0, -100, 100),
OPT_INTRANGE("saturation", gamma_saturation, 0, -100, 100),
OPT_INTRANGE("contrast", gamma_contrast, 0, -100, 100),
diff --git a/options/options.h b/options/options.h
index 8d0b694d98..08af7b7fc2 100644
--- a/options/options.h
+++ b/options/options.h
@@ -36,8 +36,6 @@ typedef struct mp_vo_opts {
float monitor_pixel_aspect;
int force_window_position;
- int fs_missioncontrol;
-
struct sws_opts *sws_opts;
} mp_vo_opts;