From 5eefbaa9050221e57bec4419ff84b68904e99f06 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO <> Date: Thu, 9 Nov 2023 13:53:43 +1100 Subject: [PATCH] only show full screen button when the media is valid --- .../MessageInfoView.swift | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Session/Media Viewing & Editing/MessageInfoView.swift b/Session/Media Viewing & Editing/MessageInfoView.swift index be20a9252..4ab49020a 100644 --- a/Session/Media Viewing & Editing/MessageInfoView.swift +++ b/Session/Media Viewing & Editing/MessageInfoView.swift @@ -116,20 +116,22 @@ struct MessageInfoView: View { .padding(.horizontal, Values.largeSpacing) } - Button { - self.showMediaFullScreen(attachment: attachment) - } label: { - ZStack { - Circle() - .foregroundColor(.init(white: 0, opacity: 0.4)) - Image(systemName: "arrow.up.left.and.arrow.down.right") - .font(.system(size: 13)) - .foregroundColor(.white) + if [ .downloaded, .uploaded ].contains(attachment.state) { + Button { + self.showMediaFullScreen(attachment: attachment) + } label: { + ZStack { + Circle() + .foregroundColor(.init(white: 0, opacity: 0.4)) + Image(systemName: "arrow.up.left.and.arrow.down.right") + .font(.system(size: 13)) + .foregroundColor(.white) + } + .frame(width: 26, height: 26) } - .frame(width: 26, height: 26) + .padding(.bottom, Values.smallSpacing) + .padding(.trailing, 38) } - .padding(.bottom, Values.smallSpacing) - .padding(.trailing, 38) } .padding(.vertical, Values.verySmallSpacing)