1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

fixed button auto-repeat speed

This commit is contained in:
jules 2007-06-19 17:02:20 +00:00
parent 8721d71492
commit 9b86c13266

View file

@ -50,7 +50,6 @@ public:
direction (direction_),
owner (owner_)
{
setRepeatSpeed (100, 50, 10);
setWantsKeyboardFocus (false);
}
@ -98,9 +97,9 @@ ScrollBar::ScrollBar (const bool vertical_,
thumbAreaSize (0),
thumbStart (0),
thumbSize (0),
initialDelayInMillisecs (-1),
repeatDelayInMillisecs (0),
minimumDelayInMillisecs (-1),
initialDelayInMillisecs (100),
repeatDelayInMillisecs (50),
minimumDelayInMillisecs (10),
vertical (vertical_),
isDraggingThumb (false),
upButton (0),