Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Semper/SemperApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ struct SemperApp: App {
FluidMenuBarExtra("Semper", image: launchIconImage, isInserted: $showMenuBarExtra) {
if let runtime { UtilityShellView(runtime: runtime, compact: true) }
}
.commandsRemoved() // The library supplies its own empty Settings scene.
}

init() {
Expand Down
2 changes: 1 addition & 1 deletion Semper/Views/Settings/Tabs/GeneralTab.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct GeneralTab: View {
SettingsSection("Behavior", subtitle: "When Semper runs") {
SettingsRow(
"Launch at Login",
description: "Keep the mixer ready after you sign in"
description: "Start Semper when you sign in"
) {
Toggle("", isOn: $settings.appSettings.launchAtLogin)
.toggleStyle(.switch)
Expand Down
Loading