We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e53a40 commit ee10530Copy full SHA for ee10530
1 file changed
SwiftBar/UI/Preferences/ShortcutPluginsPreferencesView.swift
@@ -23,13 +23,13 @@ struct ShortcutPluginsPreferencesView: View {
23
PluginStateView(plugin: plugin, pluginManager: pluginManager)
24
}.width(15)
25
TableColumn("Name", value: \.name) { plugin in
26
- Text(plugin.name).font(.title2)
+ Text(plugin.name).font(.body)
27
}
28
TableColumn("Shortcut", value: \.shortcut) { plugin in
29
- Text("\(plugin.shortcut)").font(.title2)
+ Text("\(plugin.shortcut)").font(.body)
30
31
TableColumn("Repeat") { plugin in
32
- Text("\(plugin.repeatString)").font(.title2)
+ Text("\(plugin.repeatString)").font(.body)
33
}.width(60)
34
35
TableColumn("") { plugin in
0 commit comments