From 285decd73453483876588c9d03c518eeb00ccb54 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 25 Feb 2025 00:21:33 +0100 Subject: [PATCH] Make the version watermark less annoying (#35484) * make version watermark less annoying * skreee --- Content.Client/Gameplay/GameplayState.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Client/Gameplay/GameplayState.cs b/Content.Client/Gameplay/GameplayState.cs index 427dd5c071..0ce6436f2d 100644 --- a/Content.Client/Gameplay/GameplayState.cs +++ b/Content.Client/Gameplay/GameplayState.cs @@ -59,13 +59,13 @@ namespace Content.Client.Gameplay // Version number watermark. _version = new Label(); + _version.FontColorOverride = Color.FromHex("#FFFFFF20"); _version.Text = _changelog.GetClientVersion(); - _version.Visible = VersionVisible(); UserInterfaceManager.PopupRoot.AddChild(_version); - _configurationManager.OnValueChanged(CCVars.HudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }); - _configurationManager.OnValueChanged(CCVars.ForceClientHudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }); + _configurationManager.OnValueChanged(CCVars.HudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }, true); + _configurationManager.OnValueChanged(CCVars.ForceClientHudVersionWatermark, (show) => { _version.Visible = VersionVisible(); }, true); // TODO make this centered or something - LayoutContainer.SetPosition(_version, new Vector2(800, 0)); + LayoutContainer.SetPosition(_version, new Vector2(70, 0)); } // This allows servers to force the watermark on clients -- 2.51.2