TopMost option

This commit is contained in:
01Dri 2025-12-13 22:08:42 -03:00
parent e2ac32139c
commit 72ff6034e7

View file

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