mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
[PTRun]Add option to tab through results only (#22965)
* Added option to tab through results directly instead of context menu options With reference to #22964 * Move setting to search results group
This commit is contained in:
@@ -533,6 +533,23 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
public bool TabSelectsContextButtons
|
||||
{
|
||||
get
|
||||
{
|
||||
return settings.Properties.TabSelectsContextButtons;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
if (settings.Properties.TabSelectsContextButtons != value)
|
||||
{
|
||||
settings.Properties.TabSelectsContextButtons = value;
|
||||
UpdateSettings();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private ObservableCollection<PowerLauncherPluginViewModel> _plugins;
|
||||
|
||||
public ObservableCollection<PowerLauncherPluginViewModel> Plugins
|
||||
|
||||
Reference in New Issue
Block a user