Fix operator equal application issue

This commit is contained in:
Jack251970 2025-01-04 14:02:50 +08:00
parent a34136fdfa
commit 5d623123fc

View file

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