Skip to content

Commit

Permalink
Merge pull request unoplatform#15180 from Youssef1313/fix-master-build
Browse files Browse the repository at this point in the history
build: Fix master build
  • Loading branch information
MartinZikmund authored Jan 23, 2024
2 parents 70255bb + 3742c52 commit c34647b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Uno.UI/UI/Xaml/Controls/TextBox/TextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,11 @@ protected virtual void OnTextChanged(DependencyPropertyChangedEventArgs e)

RaiseTextChanging();

if (!_isInputModifyingText || IsSkiaTextBox)
if (!_isInputModifyingText
#if __SKIA__
|| _isSkiaTextBox
#endif
)
{
_textBoxView?.SetTextNative(Text);
}
Expand Down

0 comments on commit c34647b

Please sign in to comment.