Add working folder and minimized launch options
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user