]> git.sesse.net Git - vlc/commitdiff
Change fs controller and mouse cursor hide timeout to 1000 ms
authorKaarlo Raiha <kaarlo.raiha@gmail.com>
Tue, 2 Aug 2011 16:21:34 +0000 (19:21 +0300)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 25 Sep 2011 22:29:01 +0000 (00:29 +0200)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
src/libvlc-module.c

index df722abf9c41d12e444fe333cb99c36da97b7d0b..f15ca9199a72d7ab1c544cdddc13e097f0072a77 100644 (file)
@@ -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,