Skip to content

Commit 031c8fe

Browse files
Merge pull request #252 from syncfusion/TabViewSelectionChanged
Resolved the selectionchanged issue for SfTabView.
2 parents c908b42 + 47f765b commit 031c8fe

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)