Files
mRemoteNG/mRemoteV1/Tools/PuttyProcessController.cs
Sparer, David a937d5c4f7 runtime fixes
2016-03-09 15:44:41 -07:00

22 lines
395 B
C#

namespace mRemoteNG.Tools
{
public class PuttyProcessController : ProcessController
{
public bool Start(CommandLineArguments arguments = null)
{
string filename = "";
if (My.Settings.Default.UseCustomPuttyPath)
{
filename = My.Settings.Default.CustomPuttyPath;
}
else
{
filename = App.Info.General.PuttyPath;
}
return Start(filename, arguments);
}
}
}