mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
TopMost option
This commit is contained in:
parent
e2ac32139c
commit
72ff6034e7
1 changed files with 28 additions and 0 deletions
|
|
@ -496,6 +496,34 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
}
|
||||
}
|
||||
|
||||
private bool _autoTopmost = false;
|
||||
public bool AutoTopmost
|
||||
{
|
||||
get => _autoTopmost;
|
||||
set
|
||||
{
|
||||
if (_autoTopmost != value)
|
||||
{
|
||||
_autoTopmost = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private bool _showTaskbarOnInvoke = false;
|
||||
public bool ShowTaskbarOnInvoke
|
||||
{
|
||||
get => _showTaskbarOnInvoke;
|
||||
set
|
||||
{
|
||||
if (_showTaskbarOnInvoke != value)
|
||||
{
|
||||
_showTaskbarOnInvoke = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public bool SearchQueryResultsWithDelay { get; set; }
|
||||
public int SearchDelayTime { get; set; } = 150;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue