From 72ff6034e78c1654b8eb5d1999d2b9959726feb4 Mon Sep 17 00:00:00 2001 From: 01Dri Date: Sat, 13 Dec 2025 22:08:42 -0300 Subject: [PATCH] TopMost option --- .../UserSettings/Settings.cs | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index 6adefdb6a..1394dd991 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -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;