Padding was broken in Label

0.8
Bruno Van de Velde 2017-02-10 00:33:09 +01:00
parent 2e3cc753f0
commit 7e979d20eb
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ namespace tgui
if ((getSize().x <= outline.left + outline.right) || (getSize().y <= outline.top + outline.bottom))
return;
sf::Vector2f pos{m_bordersCached.left, m_bordersCached.top};
sf::Vector2f pos{outline.left, outline.top};
if (m_verticalAlignment != VerticalAlignment::Top)
{