Fix ListView overflowing

This commit is contained in:
Frank A. Krueger 2018-04-15 15:55:08 -07:00
parent d5cb647e0a
commit 3cd9abe420
No known key found for this signature in database
GPG Key ID: 0471C67474FFE664
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ namespace Ooui.Forms.Renderers
if (Control == null)
{
_listView = new List();
_listView.Style.Overflow = "scroll";
SetNativeControl(_listView);
}