Skip to content

Commit 5d62312

Browse files
committed
Fix operator equal application issue
1 parent a34136f commit 5d62312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/FileExplorerHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private static IEnumerable<int> GetZOrder(List<dynamic> hWnds)
6868
var numRemaining = hWnds.Count;
6969
PInvoke.EnumWindows((wnd, _) =>
7070
{
71-
var searchIndex = hWnds.FindIndex(x => x.HWND == wnd.Value);
71+
var searchIndex = hWnds.FindIndex(x => x.HWND == wnd.Value.ToInt64());
7272
if (searchIndex != -1)
7373
{
7474
z[searchIndex] = index;

0 commit comments

Comments
 (0)