diff --git a/SwiftBar/UI/Preferences/PluginsPreferencesView.swift b/SwiftBar/UI/Preferences/PluginsPreferencesView.swift index 116ff5b..6ee77b7 100644 --- a/SwiftBar/UI/Preferences/PluginsPreferencesView.swift +++ b/SwiftBar/UI/Preferences/PluginsPreferencesView.swift @@ -74,7 +74,10 @@ struct PluginRowView: View { } else { Text(label) } - }.onAppear { + } + .frame(maxWidth: .infinity, alignment: .leading) + .contentShape(Rectangle()) + .onAppear { enabled = plugin.enabled }.padding(5) }