summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/changes.rst1
-rw-r--r--DOCS/man/en/options.rst4
-rw-r--r--core/cfg-mplayer.h3
3 files changed, 5 insertions, 3 deletions
diff --git a/DOCS/man/en/changes.rst b/DOCS/man/en/changes.rst
index 53d9179e6d..5de62fe601 100644
--- a/DOCS/man/en/changes.rst
+++ b/DOCS/man/en/changes.rst
@@ -107,6 +107,7 @@ Command line switches
-xineramascreen --screen (different values)
-ss --start
-endpos --length
+ --cursor-autohide-delay --cursor-autohide
=================================== ===================================
input.conf and slave commands
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst
index 97171a8c42..8dd852e6a8 100644
--- a/DOCS/man/en/options.rst
+++ b/DOCS/man/en/options.rst
@@ -448,9 +448,9 @@
off by some frames. This option does not work correctly with some demuxers
and codecs.
---cursor-autohide-delay=<number>
+--cursor-autohide=<number|no|always>
Make mouse cursor automatically hide after given number of milliseconds.
- A value of -1 will disable cursor autohide. A value of -2 means the cursor
+ ``no`` will disable cursor autohide. ``always`` means the cursor
will stay hidden. Supported by video output drivers which use X11 or
OS X Cocoa.
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h
index a83c16d271..b5b15df0d1 100644
--- a/core/cfg-mplayer.h
+++ b/core/cfg-mplayer.h
@@ -621,7 +621,8 @@ const m_option_t mplayer_opts[]={
{"full", MP_CSP_LEVELS_PC})),
{"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},
- OPT_INTRANGE("cursor-autohide-delay", cursor_autohide_delay, 0, -2, 30000),
+ OPT_CHOICE_OR_INT("cursor-autohide", cursor_autohide_delay, 0,
+ 0, 30000, ({"no", -1}, {"always", -2})),
{"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL},
{"wid", &WinID, CONF_TYPE_INT64, 0, 0, 0, NULL},