diff --git a/Mlem/Views/Shared/Comments/Comment Item.swift b/Mlem/Views/Shared/Comments/Comment Item.swift index d77daebcc..292efbea1 100644 --- a/Mlem/Views/Shared/Comments/Comment Item.swift +++ b/Mlem/Views/Shared/Comments/Comment Item.swift @@ -187,11 +187,6 @@ struct CommentItem: View { .onTapGesture { toggleCollapsed() } - .contextMenu { - ForEach(genMenuFunctions()) { item in - MenuButton(menuFunction: item, confirmDestructive: confirmDestructive) - } - } .destructiveConfirmation( isPresentingConfirmDestructive: $isPresentingConfirmDestructive, confirmationMenuFunction: confirmationMenuFunction @@ -202,6 +197,11 @@ struct CommentItem: View { trailing: enableSwipeActions ? [saveSwipeAction, replySwipeAction, expandCollapseCommentAction] : [] ) .border(width: borderWidth, edges: [.leading], color: threadingColors[depth % threadingColors.count]) + .contextMenu { + ForEach(genMenuFunctions()) { item in + MenuButton(menuFunction: item, confirmDestructive: confirmDestructive) + } + } } // swiftlint:enable function_body_length }