From a1bd8b94477962ef495117ea161246172ce83859 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 8 Jul 2008 11:21:18 +0200 Subject: [PATCH] Allow SpinBox to go over 1600 in OS-X prefs. --- modules/gui/macosx/prefs_widgets.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; -- 2.39.2