From b9443172e78669b78d3bd3fa4f20e1b202d9c741 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Fri, 22 Dec 2023 18:18:23 -0800 Subject: Fix issue where some servers mark transactions with isReply field but not as a reply transaction type. --- Hotline/macOS/FilesView.swift | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'Hotline/macOS/FilesView.swift') diff --git a/Hotline/macOS/FilesView.swift b/Hotline/macOS/FilesView.swift index ee5a310..771836d 100644 --- a/Hotline/macOS/FilesView.swift +++ b/Hotline/macOS/FilesView.swift @@ -163,12 +163,14 @@ struct FilesView: View { } } .toolbar { + + ToolbarItem(placement: .primaryAction) { Button { } label: { - Label("Download File", systemImage: "square.and.arrow.down") + Label("Delete File", systemImage: "trash") } - .help("Download") + .help("Delete") } ToolbarItem(placement: .primaryAction) { @@ -176,15 +178,23 @@ struct FilesView: View { } label: { Label("Preview File", systemImage: "eye") } - .help("Preview") + .help("Preview File") } ToolbarItem(placement: .primaryAction) { Button { } label: { - Label("Delete File", systemImage: "trash") + Label("Get File Info", systemImage: "info.circle") } - .help("Delete") + .help("Get File Info") + } + + ToolbarItem(placement: .primaryAction) { + Button { + } label: { + Label("Download File", systemImage: "square.and.arrow.down") + } + .help("Download") } } } -- cgit