Skip to content

Commit

Permalink
feat: add temp fix for fluent search
Browse files Browse the repository at this point in the history
  • Loading branch information
jovark committed Mar 14, 2024
1 parent 33c8a38 commit 2f13fe3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions GlazeWM.Domain/Windows/WindowService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2f13fe3

Please sign in to comment.