Skip to content

Commit f7ed023

Browse files
authored
Fix wrong texture on Advanced Options button in GameCreationWindow (CnCNet#866)
1 parent 4b50c4b commit f7ed023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DXMainClient/DXGUI/Multiplayer/CnCNet/GameCreationWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public override void Initialize()
124124
btnDisplayAdvancedOptions = new XNAClientButton(WindowManager);
125125
btnDisplayAdvancedOptions.Name = nameof(btnDisplayAdvancedOptions);
126126
btnDisplayAdvancedOptions.ClientRectangle = new Rectangle(UIDesignConstants.EMPTY_SPACE_SIDES +
127-
UIDesignConstants.CONTROL_HORIZONTAL_MARGIN, lblPassword.Bottom + UIDesignConstants.CONTROL_VERTICAL_MARGIN * 3, UIDesignConstants.BUTTON_WIDTH_160, UIDesignConstants.BUTTON_HEIGHT);
127+
UIDesignConstants.CONTROL_HORIZONTAL_MARGIN, lblPassword.Bottom + UIDesignConstants.CONTROL_VERTICAL_MARGIN * 3, UIDesignConstants.BUTTON_WIDTH_133, UIDesignConstants.BUTTON_HEIGHT);
128128
btnDisplayAdvancedOptions.Text = "Advanced Options".L10N("Client:Main:AdvancedOptions");
129129
btnDisplayAdvancedOptions.LeftClick += BtnDisplayAdvancedOptions_LeftClick;
130130

0 commit comments

Comments
 (0)