diff options
Diffstat (limited to 'Hotline/macOS/FilesView.swift')
| -rw-r--r-- | Hotline/macOS/FilesView.swift | 20 |
1 files changed, 15 insertions, 5 deletions
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") } } } |