Skip to content

Commit

Permalink
Fix INI name of game list alphabetical sort button.
Browse files Browse the repository at this point in the history
  • Loading branch information
Starkku committed Jul 13, 2021
1 parent ee1c3c6 commit 9d83b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DXMainClient/DXGUI/Multiplayer/CnCNet/CnCNetLobby.cs
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public override void Initialize()
tbGameSearch.Disable();

btnGameSortAlpha = new XNAClientToggleButton(WindowManager);
btnGameSortAlpha.Name = nameof(btnGameFilterOptions);
btnGameSortAlpha.Name = nameof(btnGameSortAlpha);
btnGameSortAlpha.ClientRectangle = new Rectangle(
tbGameSearch.X + tbGameSearch.Width + 10, tbGameSearch.Y,
21, 21
Expand Down

1 comment on commit 9d83b24

@devo1929
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch. copy/paste mishap...

Please sign in to comment.