don't animate when scrollbar is held

This commit is contained in:
ontrigger
2023-09-25 23:46:16 +03:00
parent a18d2d0eba
commit 056d8d5b6c

View File

@@ -425,7 +425,7 @@ namespace FlaxEngine.GUI
float mousePosition = _orientation == Orientation.Vertical ? slidePosition.Y : slidePosition.X;
float percentage = (mousePosition - _mouseOffset - _thumbSize / 2) / (TrackSize - _thumbSize);
Value = _minimum + percentage * (_maximum - _minimum);
TargetValue = _minimum + percentage * (_maximum - _minimum);
}
}