Skip to content

Commit

Permalink
Revert "One more test"
Browse files Browse the repository at this point in the history
This reverts commit daf19f9.
  • Loading branch information
nuno-vieira committed Nov 29, 2024
1 parent daf19f9 commit 69cbd9d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,16 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
})
}
)
.onLongPressGesture(perform: {
if !message.isDeleted {
handleGestureForMessage(showsMessageActions: true)
}
})
.onTapGesture(count: 2) {
if messageListConfig.doubleTapOverlayEnabled {
handleGestureForMessage(showsMessageActions: true)
}
}
.onLongPressGesture(perform: {
if !message.isDeleted {
handleGestureForMessage(showsMessageActions: true)
}
})
.offset(x: min(self.offsetX, maximumHorizontalSwipeDisplacement))
.simultaneousGesture(
DragGesture(
Expand Down

0 comments on commit 69cbd9d

Please sign in to comment.