1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-14 00:55:20 +02:00

Formspecs: Fix text clipped by scrollbars (#7816)

This commit is contained in:
random-geek
2018-11-06 14:28:34 -08:00
committed by Paramat
parent 0e306c0842
commit 3a992ce76d
2 changed files with 4 additions and 0 deletions

View File

@@ -1482,6 +1482,8 @@ void intlGUIEditBox::createVScrollBar()
}
}
RelativeRect.LowerRightCorner.X -= m_scrollbar_width + 4;
irr::core::rect<s32> scrollbarrect = FrameRect;
scrollbarrect.UpperLeftCorner.X += FrameRect.getWidth() - m_scrollbar_width;
m_vscrollbar = Environment->addScrollBar(false, scrollbarrect, getParent(), getID());