From 15153d95a4bc209ae6df053f86e303cb16b38103 Mon Sep 17 00:00:00 2001 From: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Date: Tue, 7 May 2024 23:23:26 -0700 Subject: [PATCH] Fix the changelog window being very laggy until a tab is clicked (#27795) --- Content.Client/Changelog/ChangelogWindow.xaml.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs index e5f492900c..9b7fd75436 100644 --- a/Content.Client/Changelog/ChangelogWindow.xaml.cs +++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs @@ -87,14 +87,12 @@ namespace Content.Client.Changelog if (!tab.AdminOnly || isAdmin) { Tabs.SetTabVisible(i, true); - tab.Visible = true; visibleTabs++; firstVisible ??= i; } else { Tabs.SetTabVisible(i, false); - tab.Visible = false; } } -- 2.52.0