Fix mousewheel behaviour in textarea (#6641)

Allowing scrolling with the mousewheel when the vertical scrollbar is
hidden, unnecessarily exposes oversized containers and newlines at the
end of the text. For example try scrolling over the textareas in the
pause menu. This PR addresses the issue by requiring the scrollbar to be
visible before allowing the scrolling with the mousewheel.
master
shivajiva101 2017-11-18 13:58:08 +00:00 committed by SmallJoker
parent 0780ee51c5
commit 3f8e2e8c38
1 changed files with 1 additions and 1 deletions

View File

@ -1087,7 +1087,7 @@ bool intlGUIEditBox::processMouse(const SEvent& event)
}
break;
case EMIE_MOUSE_WHEEL:
if (m_vscrollbar) {
if (m_vscrollbar && m_vscrollbar->isVisible()) {
s32 pos = m_vscrollbar->getPos();
s32 step = m_vscrollbar->getSmallStep();
m_vscrollbar->setPos(pos - event.MouseInput.Wheel * step);