Fix panel width sizing issue

This commit is contained in:
Starbeamrainbowlabs 2016-08-01 20:42:43 +01:00
parent 054d7d5169
commit 694de8b223
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace SpritePacker.GUI
private void setupWidgets()
{
// Create the layout containers
HBox masterContainer = new HBox(true, 10);
HBox masterContainer = new HBox(false, 10);
VBox leftPanel = new VBox(false, 0) { MarginRight = 5 };
VBox rightPanel = new VBox(false, 0) { MarginLeft = 5 };
Frame leftPanelFrame = new Frame("Sprites") { Child = leftPanel, Margin = 10, MarginRight = 5 };