Skip to content

Commit 47f765b

Browse files
committed
977522 : MAUI Bug (SfTabView) - Resolved the selectionchanged issue for SfTabView.
1 parent c908b42 commit 47f765b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

maui/src/TabView/Control/HorizontalContent/SfHorizontalContent.iOS.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ void ITapGestureListener.ShouldHandleTap(object view)
6969
{
7070
this._canProcessTouch = false;
7171
}
72-
}
73-
else if (view is UIKit.UITouch uiTouch)
72+
else if (view is UIKit.UITouch uiTouch)
7473
{
7574
// For SfTextInputLayout or similar views that require precise touch interactions.
7675
var touchLocation = uiTouch.LocationInView(uiTouch.View?.Superview);
@@ -104,6 +103,8 @@ void ITapGestureListener.ShouldHandleTap(object view)
104103
}
105104
}
106105
}
106+
}
107+
107108
}
108109
#endif
109110
}

0 commit comments

Comments
 (0)