diff --git a/LM-Kit-Maestro/Handlers/StatefulContentViewHandler.Apple.cs b/LM-Kit-Maestro/Handlers/StatefulContentViewHandler.Apple.cs index 0c12d15..7bdd875 100644 --- a/LM-Kit-Maestro/Handlers/StatefulContentViewHandler.Apple.cs +++ b/LM-Kit-Maestro/Handlers/StatefulContentViewHandler.Apple.cs @@ -18,7 +18,7 @@ protected override Microsoft.Maui.Platform.ContentView CreatePlatformView() protected override void ConnectHandler(Microsoft.Maui.Platform.ContentView platformView) { - platformView.AddGestureRecognizer(new UIContinousGestureRecognizer(Tapped)); + platformView.AddGestureRecognizer(new UIContinuousGestureRecognizer(Tapped)); if (OperatingSystem.IsIOSVersionAtLeast(13)) { platformView.AddGestureRecognizer(new UIHoverGestureRecognizer(OnHover)); @@ -83,11 +83,11 @@ private void Tapped(UIGestureRecognizer recognizer) } // TODO: Move it to the different file - internal class UIContinousGestureRecognizer : UIGestureRecognizer + internal class UIContinuousGestureRecognizer : UIGestureRecognizer { private readonly Action action; - public UIContinousGestureRecognizer(Action action) + public UIContinuousGestureRecognizer(Action action) { this.action = action; }