Skip to content

Commit

Permalink
chore: Adjust unused
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Feb 28, 2025
1 parent a882607 commit 3fd6e0d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public override bool ShouldChangeCharacters(UITextField textField, NSRange range
// is lower or equal to the allowed length (TextBox.MaxLength)
var newLength = textBoxView.Text.Length + replacementString.Length - range.Length;
return newLength <= textBox.MaxLength;
};
}
}

return true;
Expand Down
7 changes: 0 additions & 7 deletions src/Uno.UI/UI/Xaml/UIElement.Pointers.Native.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,5 @@ private bool OnNativePointerCancel(PointerRoutedEventArgs args, bool isSwallowed
args.CanceledByDirectManipulation = isSwallowedBySystem;
return OnPointerCancel(args);
}

#if __IOS__
private bool OnNativePointerWheel(PointerRoutedEventArgs args)
{
return RaisePointerEvent(PointerWheelChangedEvent, args);
}
#endif
}
#endif

0 comments on commit 3fd6e0d

Please sign in to comment.