Add working folder and minimized launch options

This commit is contained in:
Ray Berezowski
2026-08-26 22:37:09 -04:00
parent c5fd18e6d3
commit 57b2c4b0cc
9 changed files with 160 additions and 18 deletions

View File

@@ -468,6 +468,11 @@ public partial class LauncherPopup : Window
AddToolTipLine(panel, $"Arguments: {item.Arguments}");
}
if (!string.IsNullOrWhiteSpace(item.WorkingFolder))
{
AddToolTipLine(panel, $"Working folder: {item.WorkingFolder}");
}
if (item.IsFavorite)
{
AddToolTipLine(panel, "Pinned to top");
@@ -478,6 +483,11 @@ public partial class LauncherPopup : Window
AddToolTipLine(panel, "Runs as administrator");
}
if (item.StartMinimized)
{
AddToolTipLine(panel, "Starts minimized");
}
return new System.Windows.Controls.ToolTip { Content = panel };
}