Skip to content

Commit 4e7e717

Browse files
committed
- remove character spacing
1 parent a3b3713 commit 4e7e717

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

src/Controls/src/Core/Compatibility/Handlers/Shell/Android/SearchHandlerAppearanceTracker.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public SearchHandlerAppearanceTracker(IShellSearchView searchView, IShellContext
3838
UpdateHorizontalTextAlignment();
3939
UpdateVerticalTextAlignment();
4040
UpdateInputType();
41-
UpdateCharacterSpacing();
4241
}
4342

4443
protected virtual void SearchHandlerPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
@@ -87,18 +86,6 @@ protected virtual void SearchHandlerPropertyChanged(object sender, System.Compon
8786
{
8887
UpdateAutomationId();
8988
}
90-
else if (e.Is(SearchHandler.CharacterSpacingProperty))
91-
{
92-
UpdateCharacterSpacing();
93-
}
94-
}
95-
96-
void UpdateCharacterSpacing()
97-
{
98-
if (_editText is not null)
99-
{
100-
_editText.LetterSpacing = _searchHandler.CharacterSpacing.ToEm();
101-
}
10289
}
10390

10491
void EditTextFocusChange(object s, AView.FocusChangeEventArgs args)

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if TEST_FAILS_ON_WINDOWS && TEST_FAILS_ON_IOS // Windows Character Spacing Issue Link - https://github.com/dotnet/maui/issues/29493
1+
#if TEST_FAILS_ON_WINDOWS && TEST_FAILS_ON_IOS && TEST_FAILS_ON_ANDROID // Windows Character Spacing Issue Link - https://github.com/dotnet/maui/issues/29493
22
using NUnit.Framework;
33
using UITest.Appium;
44
using UITest.Core;

0 commit comments

Comments
 (0)