mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
launch win32 lnk programs using LnkResolvedPath
use LnkResolvedPath which is the original lnk path, rather than using the FullPath property which is assigned with the path to the actual exe
This commit is contained in:
parent
9c7dc054de
commit
b52dbbea53
1 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
|
||||
var result = new Result
|
||||
{
|
||||
SubTitle = FullPath,
|
||||
SubTitle = LnkResolvedPath ?? FullPath,
|
||||
IcoPath = IcoPath,
|
||||
Score = score,
|
||||
ContextData = this,
|
||||
|
|
@ -62,7 +62,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
|||
{
|
||||
var info = new ProcessStartInfo
|
||||
{
|
||||
FileName = FullPath,
|
||||
FileName = LnkResolvedPath ?? FullPath,
|
||||
WorkingDirectory = ParentDirectory,
|
||||
UseShellExecute = true
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue