Merge pull request #309 from d3agle/master

RDP Mono fix
This commit is contained in:
MaxXor 2015-07-30 15:34:18 +02:00
commit 8010ac037f
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,10 @@ namespace xServer.Forms
{
_connectClient = c;
_connectClient.Value.FrmRdp = this;
Subscribe(Hook.GlobalEvents());
if (!PlatformHelper.RunningOnMono)
Subscribe(Hook.GlobalEvents());
InitializeComponent();
}