From ee1053014a7988eeea5383735c2b19da23b8da2c Mon Sep 17 00:00:00 2001 From: Alex Mazanov Date: Fri, 18 Nov 2022 15:52:05 -0500 Subject: [PATCH] Adjust font size #344 --- .../UI/Preferences/ShortcutPluginsPreferencesView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift b/SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift index 0a23f29..7c44183 100644 --- a/SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift +++ b/SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift @@ -23,13 +23,13 @@ struct ShortcutPluginsPreferencesView: View { PluginStateView(plugin: plugin, pluginManager: pluginManager) }.width(15) TableColumn("Name", value: \.name) { plugin in - Text(plugin.name).font(.title2) + Text(plugin.name).font(.body) } TableColumn("Shortcut", value: \.shortcut) { plugin in - Text("\(plugin.shortcut)").font(.title2) + Text("\(plugin.shortcut)").font(.body) } TableColumn("Repeat") { plugin in - Text("\(plugin.repeatString)").font(.title2) + Text("\(plugin.repeatString)").font(.body) }.width(60) TableColumn("") { plugin in