From 623b6bf24bad0570ccfe335bc910d4b3628fee8c Mon Sep 17 00:00:00 2001 From: BDisp Date: Thu, 15 Jul 2021 19:27:13 +0100 Subject: [PATCH] Fixes the height from hiding the first character. --- UICatalog/Scenarios/AllViewsTester.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UICatalog/Scenarios/AllViewsTester.cs b/UICatalog/Scenarios/AllViewsTester.cs index 7b8e3bba0..a91cb289c 100644 --- a/UICatalog/Scenarios/AllViewsTester.cs +++ b/UICatalog/Scenarios/AllViewsTester.cs @@ -228,7 +228,8 @@ namespace UICatalog { Top.Add (_leftPane, _settingsPane, _hostPane); - _curView = CreateClass (_viewClasses.First ().Value); + // This is not needed because ListView always run the SelectedItemChanged event at first time + //_curView = CreateClass (_viewClasses.First ().Value); } void DimPosChanged (View view)