mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix operator equal application issue
This commit is contained in:
parent
a34136fdfa
commit
5d623123fc
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ namespace Flow.Launcher.Infrastructure
|
|||
var numRemaining = hWnds.Count;
|
||||
PInvoke.EnumWindows((wnd, _) =>
|
||||
{
|
||||
var searchIndex = hWnds.FindIndex(x => x.HWND == wnd.Value);
|
||||
var searchIndex = hWnds.FindIndex(x => x.HWND == wnd.Value.ToInt64());
|
||||
if (searchIndex != -1)
|
||||
{
|
||||
z[searchIndex] = index;
|
||||
|
|
|
|||
Loading…
Reference in a new issue