mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
[PTRun]Allow interaction with plugin hints (#30531)
This commit is contained in:
committed by
GitHub
parent
0e01314bbd
commit
e73e73fa6c
@@ -326,7 +326,20 @@ namespace Wox.Infrastructure.UserSettings
|
||||
None,
|
||||
}
|
||||
|
||||
public ShowPluginsOverviewMode ShowPluginsOverview { get; set; } = ShowPluginsOverviewMode.All;
|
||||
private ShowPluginsOverviewMode _showPluginsOverview = ShowPluginsOverviewMode.All;
|
||||
|
||||
public ShowPluginsOverviewMode ShowPluginsOverview
|
||||
{
|
||||
get => _showPluginsOverview;
|
||||
set
|
||||
{
|
||||
if (_showPluginsOverview != value)
|
||||
{
|
||||
_showPluginsOverview = value;
|
||||
OnPropertyChanged(nameof(ShowPluginsOverview));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool IgnoreHotkeysOnFullscreen { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user