From: Jean-Baptiste Kempf Date: Tue, 8 Jul 2008 09:21:18 +0000 (+0200) Subject: Allow SpinBox to go over 1600 in OS-X prefs. X-Git-Tag: 0.9.0-test2~102 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=a1bd8b94477962ef495117ea161246172ce83859;p=vlc Allow SpinBox to go over 1600 in OS-X prefs. --- diff --git a/modules/gui/macosx/prefs_widgets.m b/modules/gui/macosx/prefs_widgets.m index 08f994a41d..01ee64ecce 100644 --- a/modules/gui/macosx/prefs_widgets.m +++ b/modules/gui/macosx/prefs_widgets.m @@ -1441,7 +1441,7 @@ /* 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]; @@ -1734,7 +1734,7 @@ /* 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];