Browse Source

Fix textarea getting an unneeded horizontal scrollbar. See #122.

Michael Ragazzon 5 years ago
parent
commit
d6f8c23387
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Core/Elements/WidgetTextInput.cpp

+ 1 - 1
Source/Core/Elements/WidgetTextInput.cpp

@@ -956,7 +956,7 @@ void WidgetTextInput::FormatElement()
 			content_area = FormatText();
 			content_area = FormatText();
 
 
 			if (x_overflow_property == Overflow::Auto &&
 			if (x_overflow_property == Overflow::Auto &&
-				parent->GetClientWidth() < content_area.y)
+				parent->GetClientWidth() < content_area.x)
 			{
 			{
 				scroll->EnableScrollbar(ElementScroll::HORIZONTAL, width);
 				scroll->EnableScrollbar(ElementScroll::HORIZONTAL, width);
 			}
 			}