Skip to content

Commit

Permalink
fix(Droid): Remove multiple partial implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpinedam committed Oct 5, 2020
1 parent 2e24ba8 commit 49f2ae5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Uno.UI/UI/Xaml/Controls/TextBox/TextBox.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ public bool PreventKeyboardDisplayOnProgrammaticFocus
typeof(TextBox),
new FrameworkPropertyMetadata(false));


partial void InitializePropertiesPartial()
{
OnVerticalContentAlignmentChanged(VerticalAlignment.Center, VerticalContentAlignment);
}

private protected override void OnUnloaded()
{
base.OnUnloaded();
Expand All @@ -96,6 +90,7 @@ private protected override void OnLoaded()
partial void InitializePropertiesPartial()
{
OnImeOptionsChanged(ImeOptions);
OnVerticalContentAlignmentChanged(VerticalAlignment.Center, VerticalContentAlignment);
}

private void UpdateTextBoxView()
Expand Down

0 comments on commit 49f2ae5

Please sign in to comment.