mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #3168 from Jack251970/dev1
Fix operator equal application issue
This commit is contained in:
commit
7cccbb07ac
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 => new IntPtr(x.HWND) == wnd);
|
||||
if (searchIndex != -1)
|
||||
{
|
||||
z[searchIndex] = index;
|
||||
|
|
|
|||
Loading…
Reference in a new issue