From 64bd5a93ade701bf807164ed5fc581d4cfa04bce Mon Sep 17 00:00:00 2001 From: David Sparer Date: Tue, 31 Oct 2017 08:11:57 -0500 Subject: [PATCH] resolves #761 --- mRemoteV1/Connection/Protocol/IntegratedProgram.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mRemoteV1/Connection/Protocol/IntegratedProgram.cs b/mRemoteV1/Connection/Protocol/IntegratedProgram.cs index 9cf67ee1a..fe93ae40e 100644 --- a/mRemoteV1/Connection/Protocol/IntegratedProgram.cs +++ b/mRemoteV1/Connection/Protocol/IntegratedProgram.cs @@ -1,11 +1,11 @@ -using mRemoteNG.App; -using mRemoteNG.Tools; using System; using System.Diagnostics; using System.Drawing; using System.Threading; using System.Windows.Forms; +using mRemoteNG.App; using mRemoteNG.Messages; +using mRemoteNG.Tools; namespace mRemoteNG.Connection.Protocol @@ -23,7 +23,7 @@ namespace mRemoteNG.Connection.Protocol { if (InterfaceControl.Info == null) return base.Initialize(); - _externalTool = Runtime.GetExtAppByName(InterfaceControl.Info.Name); + _externalTool = Runtime.GetExtAppByName(InterfaceControl.Info.ExtApp); _externalTool.ConnectionInfo = InterfaceControl.Info; return base.Initialize();