diff options
Diffstat (limited to 'Map/Presentation/Preferences/TemplatesPreferencesView.swift')
| -rw-r--r-- | Map/Presentation/Preferences/TemplatesPreferencesView.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Map/Presentation/Preferences/TemplatesPreferencesView.swift b/Map/Presentation/Preferences/TemplatesPreferencesView.swift index 2b70b67..5de2428 100644 --- a/Map/Presentation/Preferences/TemplatesPreferencesView.swift +++ b/Map/Presentation/Preferences/TemplatesPreferencesView.swift @@ -128,9 +128,9 @@ struct TemplatesPreferencesView: View { .border(Color.Theme.UI.foreground.opacity(0.2), width: 1) HStack(spacing: Dimensions.Spacing.regular) { - + Spacer() - + Button(action: { showingHelpPopover = true }) { Image(systemName: "questionmark.circle") } @@ -143,14 +143,14 @@ struct TemplatesPreferencesView: View { .frame(width: 300) .padding(Dimensions.Spacing.regular) } - + HStack(spacing: Dimensions.Spacing.coziest) { Button(action: { showingAddSheet = true }) { Image(systemName: "plus") } .keyboardShortcut("t", modifiers: [.command]) .help("preferences.templates.help.add") - + Button(action: { removeTemplate(selectedTemplate) }) { |