Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lcarrere committed Nov 23, 2024
1 parent 81dcec5 commit 90f0210
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LM-Kit-Maestro/Handlers/StatefulContentViewHandler.Apple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -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<UIGestureRecognizer> action;

public UIContinousGestureRecognizer(Action<UIGestureRecognizer> action)
public UIContinuousGestureRecognizer(Action<UIGestureRecognizer> action)
{
this.action = action;
}
Expand Down

0 comments on commit 90f0210

Please sign in to comment.