From d97af69306e738c2b32642698961ff857824247e Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Sun, 12 May 2024 21:41:11 +0100 Subject: [PATCH] remove udmux indicator not necessary anymore --- Bloxstrap/UI/Elements/ContextMenu/ServerInformation.xaml | 3 --- .../UI/ViewModels/ContextMenu/ServerInformationViewModel.cs | 1 - 2 files changed, 4 deletions(-) diff --git a/Bloxstrap/UI/Elements/ContextMenu/ServerInformation.xaml b/Bloxstrap/UI/Elements/ContextMenu/ServerInformation.xaml index e996780..23c2786 100644 --- a/Bloxstrap/UI/Elements/ContextMenu/ServerInformation.xaml +++ b/Bloxstrap/UI/Elements/ContextMenu/ServerInformation.xaml @@ -47,9 +47,6 @@ - - - diff --git a/Bloxstrap/UI/ViewModels/ContextMenu/ServerInformationViewModel.cs b/Bloxstrap/UI/ViewModels/ContextMenu/ServerInformationViewModel.cs index 992601c..89b1439 100644 --- a/Bloxstrap/UI/ViewModels/ContextMenu/ServerInformationViewModel.cs +++ b/Bloxstrap/UI/ViewModels/ContextMenu/ServerInformationViewModel.cs @@ -15,7 +15,6 @@ namespace Bloxstrap.UI.ViewModels.ContextMenu Resources.Strings.ContextMenu_ServerInformation_TypeFormat, Resources.Strings.ResourceManager.GetStringSafe($"Enums.ServerType.{_activityWatcher.ActivityServerType}")); public string ServerLocation { get; private set; } = Resources.Strings.ContextMenu_ServerInformation_Loading; - public string UdmuxProxied => _activityWatcher.ActivityMachineUDMUX ? Resources.Strings.Common_Yes : Resources.Strings.Common_No; public ICommand CopyInstanceIdCommand => new RelayCommand(CopyInstanceId); public ICommand CloseWindowCommand => new RelayCommand(_window.Close);