[PTRun]Allow interaction with plugin hints (#30531)

This commit is contained in:
Davide Giacometti
2023-12-20 16:19:58 +01:00
committed by GitHub
parent 0e01314bbd
commit e73e73fa6c
5 changed files with 216 additions and 65 deletions

View File

@@ -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; }