1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +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_), direction (direction_),
owner (owner_) owner (owner_)
{ {
setRepeatSpeed (100, 50, 10);
setWantsKeyboardFocus (false); setWantsKeyboardFocus (false);
} }
@ -98,9 +97,9 @@ ScrollBar::ScrollBar (const bool vertical_,
thumbAreaSize (0), thumbAreaSize (0),
thumbStart (0), thumbStart (0),
thumbSize (0), thumbSize (0),
initialDelayInMillisecs (-1), initialDelayInMillisecs (100),
repeatDelayInMillisecs (0), repeatDelayInMillisecs (50),
minimumDelayInMillisecs (-1), minimumDelayInMillisecs (10),
vertical (vertical_), vertical (vertical_),
isDraggingThumb (false), isDraggingThumb (false),
upButton (0), upButton (0),