aboutsummaryrefslogtreecommitdiff
path: root/Map/Presentation/Preferences
diff options
context:
space:
mode:
Diffstat (limited to 'Map/Presentation/Preferences')
-rw-r--r--Map/Presentation/Preferences/TemplatesPreferencesView.swift2
1 files changed, 2 insertions, 0 deletions
diff --git a/Map/Presentation/Preferences/TemplatesPreferencesView.swift b/Map/Presentation/Preferences/TemplatesPreferencesView.swift
index 51d1c5e..aab73ef 100644
--- a/Map/Presentation/Preferences/TemplatesPreferencesView.swift
+++ b/Map/Presentation/Preferences/TemplatesPreferencesView.swift
@@ -127,6 +127,7 @@ struct TemplatesPreferencesView: View {
HStack(spacing: Dimensions.Spacing.coziest) {
Button(action: { showingAddSheet = true }) {
Image(systemName: "plus")
+ .frame(width: 12, height: 12)
}
.keyboardShortcut("t", modifiers: [.command])
.help("preferences.templates.help.add")
@@ -135,6 +136,7 @@ struct TemplatesPreferencesView: View {
removeTemplate(selectedTemplate)
}) {
Image(systemName: "minus")
+ .frame(width: 12, height: 12)
}
.keyboardShortcut(.delete, modifiers: [.command])
.help("preferences.templates.help.remove \(selectedTemplate?.name ?? "")")