Improve spacing on Escape Menu.

This commit is contained in:
Pieter-Jan Briers
2019-10-18 14:26:45 +02:00
parent 6f704f0320
commit 0edccd8934

View File

@@ -54,7 +54,7 @@ namespace Content.Client.UserInterface
Title = "Menu";
var vBox = new VBoxContainer {SeparationOverride = 2};
var vBox = new VBoxContainer {SeparationOverride = 6};
Contents.AddChild(vBox);
SpawnEntitiesButton = new Button {Text = "Spawn Entities"};
@@ -66,7 +66,7 @@ namespace Content.Client.UserInterface
vBox.AddChild(SpawnTilesButton);
// Add a spacer.
vBox.AddChild(new Control { CustomMinimumSize = (0, 5)});
//vBox.AddChild(new Control { CustomMinimumSize = (0, 5)});
OptionsButton = new Button {Text = "Options"};
OptionsButton.OnPressed += OnOptionsButtonClicked;