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:
Po Lu 2022-03-13 12:56:55 +00:00
parent 6ab04b59b1
commit 49f70b603f

View file

@ -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;