From 8764540d3bf4eeb14551fbb642a0199a145ebc1f Mon Sep 17 00:00:00 2001 From: Brant Martin Date: Thu, 26 Jul 2018 23:24:40 -0400 Subject: [PATCH] Set TorchUI window title with InstanceName setting (in torch.cfg) --- Torch.Server/Views/TorchUI.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Torch.Server/Views/TorchUI.xaml.cs b/Torch.Server/Views/TorchUI.xaml.cs index 3f5ca63..b630fe2 100644 --- a/Torch.Server/Views/TorchUI.xaml.cs +++ b/Torch.Server/Views/TorchUI.xaml.cs @@ -52,6 +52,7 @@ namespace Torch.Server Themes.uiSource = this; Themes.SetConfig(_config); + Title = $"{_config.InstanceName} - Torch {server.TorchVersion}, SE {server.GameVersion}"; } private void AttachConsole()