From 65abb1dfaa0360a6528c90464ed37b766fd99979 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 8 Nov 2016 00:02:43 -0500 Subject: [PATCH] Don't allow entry width to overflow outside of layout --- src/App/Controls/FormEntryCell.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App/Controls/FormEntryCell.cs b/src/App/Controls/FormEntryCell.cs index 74ad9cc0d..0a81fe53c 100644 --- a/src/App/Controls/FormEntryCell.cs +++ b/src/App/Controls/FormEntryCell.cs @@ -35,6 +35,7 @@ namespace Bit.App.Controls IsPassword = IsPassword, AllowClear = true, HorizontalOptions = LayoutOptions.FillAndExpand, + WidthRequest = 1, FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Entry)) };