diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-22 23:29:20 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-22 23:29:20 -0800 |
| commit | 8a2a78d62f1cb9a75fe3fc5254f76cc4ffdd26f7 (patch) | |
| tree | 3501ad6fdef17c1823055a7186509eac5dfc76b2 /Hotline/Application.swift | |
| parent | 141ba771eddd2e504a0f29bafd7b9f7c032b72c0 (diff) | |
Added Save Chat button to Chat toolbar.
Diffstat (limited to 'Hotline/Application.swift')
| -rw-r--r-- | Hotline/Application.swift | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Hotline/Application.swift b/Hotline/Application.swift index 2e35e3c..65833f1 100644 --- a/Hotline/Application.swift +++ b/Hotline/Application.swift @@ -36,6 +36,18 @@ struct Application: App { ServerView(server: s) .frame(minWidth: 400, minHeight: 300) .environment(Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient())) + .toolbar { + ToolbarItem(placement: .navigation) { + Image(systemName: "globe.americas.fill") + .resizable() + .scaledToFit() +// .foregroundColor(.secondary) + .frame(width: 22) +// .fontWeight(.light) +// Text("") +// .font(.system(size: 22, weight: .ultraLight)) + } + } } } .defaultSize(width: 700, height: 800) |