diff --git a/src/settings-ui/Microsoft.PowerToys.Settings.UI.Library/ViewModels/PowerLauncherPluginViewModel.cs b/src/settings-ui/Microsoft.PowerToys.Settings.UI.Library/ViewModels/PowerLauncherPluginViewModel.cs index cde36c964d..07216c1510 100644 --- a/src/settings-ui/Microsoft.PowerToys.Settings.UI.Library/ViewModels/PowerLauncherPluginViewModel.cs +++ b/src/settings-ui/Microsoft.PowerToys.Settings.UI.Library/ViewModels/PowerLauncherPluginViewModel.cs @@ -139,21 +139,6 @@ namespace Microsoft.PowerToys.Settings.UI.Library.ViewModels } } - private bool _showAdditionalInfoPanel; - - public bool ShowAdditionalInfoPanel - { - get => _showAdditionalInfoPanel; - set - { - if (value != _showAdditionalInfoPanel) - { - _showAdditionalInfoPanel = value; - NotifyPropertyChanged(); - } - } - } - public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") diff --git a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Controls/SettingsGroup/SettingsGroup.xaml b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Controls/SettingsGroup/SettingsGroup.xaml index 80c7b66e9f..b1aaa01512 100644 --- a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Controls/SettingsGroup/SettingsGroup.xaml +++ b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Controls/SettingsGroup/SettingsGroup.xaml @@ -11,6 +11,7 @@ + diff --git a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw index fe14c58585..fe1dfbce16 100644 --- a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw +++ b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw @@ -1053,7 +1053,7 @@ Made with 💗 by Microsoft and the PowerToys community. Plugins - + Direct activation phrase diff --git a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml index 2d9702917d..7e91316a79 100644 --- a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml +++ b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml @@ -168,145 +168,88 @@ - - - - - - - - - - - - - + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - - - + + + + + + + + + + + + + diff --git a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml.cs b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml.cs index d522ea7ae0..b0f89da38c 100644 --- a/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml.cs +++ b/src/settings-ui/Microsoft.PowerToys.Settings.UI/Views/PowerLauncherPage.xaml.cs @@ -66,15 +66,6 @@ namespace Microsoft.PowerToys.Settings.UI.Views Helpers.StartProcessHelper.Start(Helpers.StartProcessHelper.ColorsSettings); } - private void PluginsListView_SelectionChanged(object sender, SelectionChangedEventArgs e) - { - var selectedPlugin = (sender as ListView)?.SelectedItem; - foreach (var plugin in ViewModel.Plugins) - { - plugin.ShowAdditionalInfoPanel = plugin == selectedPlugin; - } - } - /* public Tuple SelectedSearchResultPreference {