mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix build issue & Cleanup codes
This commit is contained in:
parent
c690e591ff
commit
b0b1a2661a
1 changed files with 2 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue