Hide overflow in Forms elements

This commit is contained in:
Frank A. Krueger 2018-04-15 21:22:02 -07:00
parent cfa3078528
commit 42c1c113e4
No known key found for this signature in database
GPG Key ID: 0471C67474FFE664
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ namespace Ooui.Forms
public VisualElementRenderer (string tagName = "div") : base (tagName) public VisualElementRenderer (string tagName = "div") : base (tagName)
{ {
Style.Overflow = "hidden";
_propertyChangedHandler = OnElementPropertyChanged; _propertyChangedHandler = OnElementPropertyChanged;
} }