[vlc-commits] Change fs controller and mouse cursor hide timeout to 1000 ms

Kaarlo Raiha git at videolan.org
Mon Sep 26 00:29:11 CEST 2011


vlc | branch: master | Kaarlo Raiha <kaarlo.raiha at gmail.com> | Tue Aug  2 19:21:34 2011 +0300| [b243bc8f99f707d8755d48a9a1b71f18b0f6ee0e] | committer: Jean-Baptiste Kempf

Change fs controller and mouse cursor hide timeout to 1000 ms

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b243bc8f99f707d8755d48a9a1b71f18b0f6ee0e
---

 src/libvlc-module.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index df722ab..f15ca91 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -462,7 +462,7 @@ static const char *const ppsz_align_descriptions[] =
                                    "controller after x milliseconds")
 #define MOUSE_HIDE_TIMEOUT_LONGTEXT N_( \
     "Hide mouse cursor and fullscreen controller after " \
-    "n milliseconds, default is 3000 ms (3 sec.)")
+    "n milliseconds.")
 
 #define DEINTERLACE_TEXT N_("Deinterlace")
 #define DEINTERLACE_LONGTEXT N_(\
@@ -1686,8 +1686,8 @@ vlc_module_begin ()
                  VIDEO_TITLE_POSITION_LONGTEXT, false )
         change_safe()
         change_integer_list( pi_pos_values, ppsz_pos_descriptions )
-    // autohide after 1.5s
-    add_integer( "mouse-hide-timeout", 1500, MOUSE_HIDE_TIMEOUT_TEXT,
+    // autohide after 1 second
+    add_integer( "mouse-hide-timeout", 1000, MOUSE_HIDE_TIMEOUT_TEXT,
                  MOUSE_HIDE_TIMEOUT_LONGTEXT, false )
     set_section( N_("Snapshot") , NULL )
     add_directory( "snapshot-path", NULL, SNAP_PATH_TEXT,



More information about the vlc-commits mailing list