From 771661f478f5be07472434d32532f22aa7a8d8ab Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 24 Apr 2024 21:26:55 -0400 Subject: [PATCH] fix analysis console bias button for real (#27299) fix bias button for real --- .../Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index ecbb8e9662..59cf34944c 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -73,7 +73,10 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow { ScanButton.Disabled = !state.CanScan; PrintButton.Disabled = !state.CanPrint; - DownBiasButton.Pressed = state.IsTraversalDown; + if (state.IsTraversalDown) + DownBiasButton.Pressed = true; + else + UpBiasButton.Pressed = true; var disabled = !state.ServerConnected || !state.CanScan || state.PointAmount <= 0; -- 2.52.0