Allow overscrolling on Haiku scroll bars that are full
* src/haiku_support.cc (MouseMoved): Allow overscrolling even if portion is less than 1.0.
This commit is contained in:
parent
6ab04b59b1
commit
49f70b603f
1 changed files with 1 additions and 1 deletions
|
@ -1921,7 +1921,7 @@ class EmacsScrollBar : public BScrollBar
|
|||
{
|
||||
BScrollBar::MouseMoved (point, transit, msg);
|
||||
|
||||
if (value == Value () && Proportion () < 1.0f)
|
||||
if (value == Value ())
|
||||
{
|
||||
overscroll_start_value = value;
|
||||
in_overscroll = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue