diff --git a/Shared/WriteFreely_MultiPlatformApp.swift b/Shared/WriteFreely_MultiPlatformApp.swift index 4aeb385..fda2397 100644 --- a/Shared/WriteFreely_MultiPlatformApp.swift +++ b/Shared/WriteFreely_MultiPlatformApp.swift @@ -39,9 +39,16 @@ struct WriteFreely_MultiPlatformApp: App { .disabled(!model.account.isLoggedIn) .keyboardShortcut("r", modifiers: [.command]) } - #if os(macOS) SidebarCommands() - #endif + CommandGroup(after: .help) { + Button("Visit Support Forum") { + #if os(macOS) + NSWorkspace().open(model.helpURL) + #else + UIApplication.shared.open(model.helpURL) + #endif + } + } } #if os(macOS)