Skip to content

Commit 52a51cf

Browse files
committed
Fix build issue
1 parent 82b8faa commit 52a51cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public bool JumpFolder(string path, bool auto)
178178

179179
var timeOut = !SpinWait.SpinUntil(() =>
180180
{
181-
var style = PInvoke.GetWindowLong(_pathControl, WINDOW_LONG_PTR_INDEX.GWL_STYLE);
181+
var style = PInvoke.GetWindowLongPtr(_pathControl, WINDOW_LONG_PTR_INDEX.GWL_STYLE);
182182
return (style & (int)WINDOW_STYLE.WS_VISIBLE) != 0;
183183
}, 1000);
184184
if (timeOut)

0 commit comments

Comments
 (0)