diff options
author | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2011-12-08 11:17:59 +0100 |
---|---|---|
committer | Uoti Urpala <uau@mplayer2.org> | 2012-03-25 22:30:37 +0300 |
commit | 495dde4018e071f81462052d5b4c09c973f25f16 (patch) | |
tree | 9601e9ff288c8f4305c1dd16ce4aaa43ea596ac6 /cfg-mplayer.h | |
parent | f30bf73bf22ed054233507d7277e3658e51d86bd (diff) | |
download | mpv-495dde4018e071f81462052d5b4c09c973f25f16.tar.bz2 mpv-495dde4018e071f81462052d5b4c09c973f25f16.tar.xz |
options, x11+cocoa: add option --cursor-autohide-delay
Add option --cursor-autohide-delay to control the number of milliseconds
with no user interaction before the mouse cursor is hidden.
There are two negative values with useful special meanings:
* A value of -1 prevents the cursor from hiding (useful for users
with multiple displays).
* A value of -2 prevents the cursor from showing upon activity.
The default is 1 second to keep the behaviour consistent with the
past X11 backend implementation.
Remove the vo_mouse_autohide field as it was always true.
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r-- | cfg-mplayer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h index 6a167ece54..6d105569ae 100644 --- a/cfg-mplayer.h +++ b/cfg-mplayer.h @@ -803,6 +803,7 @@ const m_option_t mplayer_opts[]={ {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"nograbpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 1, 0, NULL}, + OPT_INTRANGE("cursor-autohide-delay", cursor_autohide_delay, 0, -2, 30000), {"adapter", &vo_adapter_num, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL}, {"refreshrate",&vo_refresh_rate,CONF_TYPE_INT,CONF_RANGE, 0,100, NULL}, |