diff options
| author | Dustin Mierau <dustin@mierau.me> | 2025-11-07 16:16:31 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2025-11-07 16:16:31 -0800 |
| commit | 6afa5551add4541f376867b3d6527df9a0f793f3 (patch) | |
| tree | a1fbdb6c0a71f621a01c2821fe5d340d5853f1ca /Hotline/macOS/HotlinePanelView.swift | |
| parent | e1566598c96601ebcf3229aab22fc7a593ee1904 (diff) | |
Further UI tweraks. Transfers button in toolbar. Better empty states in places. Fix race condition with transactions ids (yikes)!
Diffstat (limited to 'Hotline/macOS/HotlinePanelView.swift')
| -rw-r--r-- | Hotline/macOS/HotlinePanelView.swift | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Hotline/macOS/HotlinePanelView.swift b/Hotline/macOS/HotlinePanelView.swift index 7819c2f..81c24b7 100644 --- a/Hotline/macOS/HotlinePanelView.swift +++ b/Hotline/macOS/HotlinePanelView.swift @@ -119,6 +119,18 @@ struct HotlinePanelView: View { .disabled(self.activeServerState == nil) .help("Accounts") } + + Button { + self.openWindow(id: "transfers") + } + label: { + Image("Section Transfers") + .resizable() + .scaledToFit() + } + .buttonStyle(.plain) + .frame(width: 20, height: 20) + .help("File Transfers") SettingsLink(label: { Image("Section Settings") |