From fa8d59075b1a3547c7fbfcdda5a8ba813484149d Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Tue, 22 Feb 2022 14:28:43 -0300 Subject: [PATCH] Fix Options being seen in two lines on Add/edit Send (#1798) --- src/App/Pages/Send/SendAddEditPage.xaml.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/App/Pages/Send/SendAddEditPage.xaml.cs b/src/App/Pages/Send/SendAddEditPage.xaml.cs index 97f755429..a0b1aa2d8 100644 --- a/src/App/Pages/Send/SendAddEditPage.xaml.cs +++ b/src/App/Pages/Send/SendAddEditPage.xaml.cs @@ -55,9 +55,10 @@ namespace Bit.App.Pages _vm.SegmentedButtonFontSize = 13; _vm.SegmentedButtonMargins = new Thickness(0, 10, 0, 0); _vm.EditorMargins = new Thickness(0, 5, 0, 0); - _btnOptions.WidthRequest = 70; - _btnOptionsDown.WidthRequest = 30; - _btnOptionsUp.WidthRequest = 30; + // Review this when https://github.com/bitwarden/mobile/pull/1454 workaround can be reverted + //_btnOptions.WidthRequest = 70; + //_btnOptionsDown.WidthRequest = 30; + //_btnOptionsUp.WidthRequest = 30; } else if (Device.RuntimePlatform == Device.iOS) {