From 2f13fe3c24cb696728c37c43d3e1f953568d1288 Mon Sep 17 00:00:00 2001 From: Joonatan Date: Thu, 14 Mar 2024 23:13:42 +0200 Subject: [PATCH] feat: add temp fix for fluent search --- GlazeWM.Domain/Windows/WindowService.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GlazeWM.Domain/Windows/WindowService.cs b/GlazeWM.Domain/Windows/WindowService.cs index de5a311e7..c6deceb2e 100644 --- a/GlazeWM.Domain/Windows/WindowService.cs +++ b/GlazeWM.Domain/Windows/WindowService.cs @@ -183,6 +183,9 @@ public static bool IsHandleManageable(IntPtr handle) // TODO: Temporary fix for managing Flow Launcher until a force manage command is added. if (processName == "Flow.Launcher" && title == "Flow.Launcher") return true; + + if (processName == "Fluent Search" && title == "FluentSearch") + return true; } // Ignore windows that are hidden.