Skip to content

Commit

Permalink
Fix admin menu window size (#11534)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrexbe authored Sep 26, 2022
1 parent 11f2590 commit b6fdce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Client/Administration/UI/AdminMenuWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public sealed partial class AdminMenuWindow : DefaultWindow

public AdminMenuWindow()
{
MinSize = SetSize = (500, 250);
MinSize = (500, 250);
Title = Loc.GetString("admin-menu-title");
RobustXamlLoader.Load(this);
IoCManager.InjectDependencies(this);
Expand Down

0 comments on commit b6fdce0

Please sign in to comment.