Make "repeat" start slower on pick-animation mouse events;

otherwise it is unusable.
This commit is contained in:
John Denker
2009-01-07 04:22:13 -07:00
committed by Tim Moore
parent 80609e0816
commit f3bc977d32

View File

@@ -2013,7 +2013,7 @@ public:
SGBindingList::const_iterator i;
for (i = _bindingsDown.begin(); i != _bindingsDown.end(); ++i)
(*i)->fire();
_repeatTime = 0;
_repeatTime = -_repeatInterval; // anti-bobble: delay start of repeat
return true;
}
virtual void buttonReleased(void)