Skip to content

Commit

Permalink
Fixed Gui size for settings menu. 2 collumns where added but not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
thorwin99 committed Aug 26, 2020
1 parent 0eabcd7 commit 4e875f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SEWorldGenPlugin/GUI/PluginSettingsGui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void BuildControls()
int mod = m_isNewGame ? 6 : 0;
AddCaption("SEWorldGenPlugin Settings", null, new Vector2(0f, 0.003f));

MyGuiControlParent parent = new MyGuiControlParent(null, new Vector2(base.Size.Value.X - vector.X * 2f, 0.052f * (17 + mod)));
MyGuiControlParent parent = new MyGuiControlParent(null, new Vector2(base.Size.Value.X - vector.X * 2f, 0.052f * (15 + mod)));
parent.OriginAlign = MyGuiDrawAlignEnum.HORISONTAL_LEFT_AND_VERTICAL_TOP;

MyGuiControlSeparatorList myGuiControlSeparatorList = new MyGuiControlSeparatorList();
Expand Down

0 comments on commit 4e875f1

Please sign in to comment.