From 30deb6da99e3c7f5e96dd7e4dd7ec2d67821cbd2 Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Wed, 11 Jun 2025 20:02:32 +0800 Subject: [PATCH] Fix argument sequence issue --- Flow.Launcher.Infrastructure/Win32Helper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Infrastructure/Win32Helper.cs b/Flow.Launcher.Infrastructure/Win32Helper.cs index cfc73ad90..9336ce44c 100644 --- a/Flow.Launcher.Infrastructure/Win32Helper.cs +++ b/Flow.Launcher.Infrastructure/Win32Helper.cs @@ -808,7 +808,7 @@ namespace Flow.Launcher.Infrastructure /// Inspired by /// Document: /// - public static unsafe bool RunAsDesktopUser(string app, string cmdLine, string currentDir, out string errorInfo) + public static unsafe bool RunAsDesktopUser(string app, string currentDir, string cmdLine, out string errorInfo) { STARTUPINFOW si = new(); PROCESS_INFORMATION pi = new();