From 42c1c113e4a0e43dbcbb315694c742e8cc5ce5fb Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Sun, 15 Apr 2018 21:22:02 -0700 Subject: [PATCH] Hide overflow in Forms elements --- Ooui.Forms/VisualElementRenderer.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Ooui.Forms/VisualElementRenderer.cs b/Ooui.Forms/VisualElementRenderer.cs index b436710..6a3beb6 100644 --- a/Ooui.Forms/VisualElementRenderer.cs +++ b/Ooui.Forms/VisualElementRenderer.cs @@ -66,6 +66,7 @@ namespace Ooui.Forms public VisualElementRenderer (string tagName = "div") : base (tagName) { + Style.Overflow = "hidden"; _propertyChangedHandler = OnElementPropertyChanged; }