From 96c777cb4354077eba94d2a46994669a91084ce0 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 4 Aug 2016 16:28:28 +0200 Subject: [PATCH] Set display properly when checking RemoteHost status --- renderdocui/Windows/Dialogs/RemoteManager.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/renderdocui/Windows/Dialogs/RemoteManager.cs b/renderdocui/Windows/Dialogs/RemoteManager.cs index 43636a08f..4e17555d8 100644 --- a/renderdocui/Windows/Dialogs/RemoteManager.cs +++ b/renderdocui/Windows/Dialogs/RemoteManager.cs @@ -172,7 +172,11 @@ namespace renderdocui.Windows.Dialogs string username = System.Security.Principal.WindowsIdentity.GetCurrent().Name; - (node.Tag as RemoteHost).CheckStatus(); + RemoteHost host = node.Tag as RemoteHost; + + host.CheckStatus(); + + SetRemoteServerLive(node, host.ServerRunning, host.Busy); StaticExports.EnumerateRemoteTargets(hostname, (UInt32 i) => { try