]> git.sesse.net Git - vlc/commitdiff
Allow SpinBox to go over 1600 in OS-X prefs.
authorJean-Baptiste Kempf <jb@videolan.org>
Tue, 8 Jul 2008 09:21:18 +0000 (11:21 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 9 Jul 2008 07:27:32 +0000 (09:27 +0200)
modules/gui/macosx/prefs_widgets.m

index 08f994a41d036c77341c853a33415cd3257ef526..01ee64ecce4e006a3f62faf7824cbbfbe248d087 100644 (file)
 
         /* build the stepper */
         ADD_STEPPER( o_stepper, mainFrame, mainFrame.size.width - 19,
-            0, o_tooltip, -1600, 1600)
+            0, o_tooltip, -100000, 100000)
         [o_stepper setIntValue: p_item->value.i];
         [o_stepper setAutoresizingMask:NSViewMaxXMargin ];
         [self addSubview: o_stepper];
 
         /* build the stepper */
         ADD_STEPPER( o_stepper, mainFrame, mainFrame.size.width - 19,
-            0, o_tooltip, -1600, 1600)
+            0, o_tooltip, -100000, 100000)
         [o_stepper setFloatValue: p_item->value.f];
         [o_stepper setAutoresizingMask:NSViewMaxXMargin ];
         [self addSubview: o_stepper];