Skip to content

Commit a4c15c9

Browse files
Merge pull request #163 from ShyamSundar-SF4699/bottomsheet-statechanged
BottomSheet StateChanged Event Not Triggering on Negative Touch Inputs
2 parents f1dfe56 + 16049ab commit a4c15c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maui/src/BottomSheet/SfBottomSheet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2330,7 +2330,7 @@ void HandleTouchReleased(double touchY)
23302330
_initialTouchY = 0;
23312331
_isPointerPressed = false;
23322332

2333-
if(_bottomSheet is not null && touchY >= _bottomSheet.TranslationY)
2333+
if(_bottomSheet is not null)
23342334
{
23352335
UpdatePosition();
23362336
}

0 commit comments

Comments
 (0)