Fix build issue & Cleanup codes

This commit is contained in:
Jack251970 2025-03-16 20:26:06 +08:00
parent c690e591ff
commit b0b1a2661a

View file

@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows;
@ -435,7 +434,7 @@ namespace Flow.Launcher.Plugin.Sys
AutoCompleteText = DataLocation.VersionLogDirectory,
Action = c =>
{
_context.API.OpenDirectory(logPath);
_context.API.OpenDirectory(DataLocation.VersionLogDirectory);
return true;
}
},
@ -459,7 +458,7 @@ namespace Flow.Launcher.Plugin.Sys
AutoCompleteText = DataLocation.DataDirectory(),
Action = c =>
{
_context.API.OpenDirectory(userDataPath);
_context.API.OpenDirectory(DataLocation.DataDirectory());
return true;
}
},