Skip to content

Commit

Permalink
Update Content.Client/Lobby/UI/CharacterSetupGuiSavePanel.xaml.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
metalgearsloth authored Jul 11, 2024
1 parent 3763648 commit 8854e0f
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions Content.Client/Lobby/UI/CharacterSetupGuiSavePanel.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
using Robust.Client.UserInterface.CustomControls;
using Robust.Client.UserInterface.XAML;

namespace Content.Client.Lobby.UI
namespace Content.Client.Lobby.UI;

[GenerateTypedNameReferences]
public sealed partial class CharacterSetupGuiSavePanel : DefaultWindow
{
[GenerateTypedNameReferences]
public sealed partial class CharacterSetupGuiSavePanel : DefaultWindow
public CharacterSetupGuiSavePanel()
{
public CharacterSetupGuiSavePanel()
{
RobustXamlLoader.Load(this);
RobustXamlLoader.Load(this);

CancelButton.OnPressed += _ =>
{
Close();
};
CancelButton.OnPressed += _ =>
{
Close();
};

CloseButton.Visible = false;
}
CloseButton.Visible = false;
}
}

0 comments on commit 8854e0f

Please sign in to comment.