]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix analysis console not saving bias button state (#27275)
authorNemanja <98561806+EmoGarbage404@users.noreply.github.com>
Wed, 24 Apr 2024 05:35:16 +0000 (01:35 -0400)
committerGitHub <noreply@github.com>
Wed, 24 Apr 2024 05:35:16 +0000 (01:35 -0400)
Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs

index 2acf35da25bab3e885b1807aaa7e20209445f2e7..ecbb8e96620116c395ec651eeec03ff11b237f78 100644 (file)
@@ -73,6 +73,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow
     {
         ScanButton.Disabled = !state.CanScan;
         PrintButton.Disabled = !state.CanPrint;
+        DownBiasButton.Pressed = state.IsTraversalDown;
 
         var disabled = !state.ServerConnected || !state.CanScan || state.PointAmount <= 0;