Skip to content

Commit 617018b

Browse files
authored
Update SelectCharacterWindow.cs
1 parent 2964c1a commit 617018b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Intersect.Client.Core/Interface/Menu/SelectCharacterWindow.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ protected override void EnsureInitialized()
173173
SizeToChildren(recursive: true);
174174

175175
LoadJsonUi(GameContentManager.UI.Menu, Graphics.Renderer?.GetResolutionString());
176-
_ensureArrowsVisibility();
176+
EnsureArrowsVisibility();
177177
}
178178

179179
//Methods
@@ -341,10 +341,10 @@ public override void Show()
341341
_selectedCharacterIndex = 0;
342342
UpdateDisplay();
343343
base.Show();
344-
_ensureArrowsVisibility();
344+
EnsureArrowsVisibility();
345345
}
346346

347-
private void _ensureArrowsVisibility()
347+
private void EnsureArrowsVisibility()
348348
{
349349
// in case the json load is changing the visibility of the arrows when it shouldn't
350350
// lets ensure the right value
@@ -448,4 +448,4 @@ public void ButtonPlay_Clicked(Base? sender, MouseButtonState? arguments)
448448
_buttonDelete.Disable();
449449
_buttonLogout.Disable();
450450
}
451-
}
451+
}

0 commit comments

Comments
 (0)