Fix panel width sizing issue
This commit is contained in:
parent
054d7d5169
commit
694de8b223
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ namespace SpritePacker.GUI
|
||||||
private void setupWidgets()
|
private void setupWidgets()
|
||||||
{
|
{
|
||||||
// Create the layout containers
|
// 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 leftPanel = new VBox(false, 0) { MarginRight = 5 };
|
||||||
VBox rightPanel = new VBox(false, 0) { MarginLeft = 5 };
|
VBox rightPanel = new VBox(false, 0) { MarginLeft = 5 };
|
||||||
Frame leftPanelFrame = new Frame("Sprites") { Child = leftPanel, Margin = 10, MarginRight = 5 };
|
Frame leftPanelFrame = new Frame("Sprites") { Child = leftPanel, Margin = 10, MarginRight = 5 };
|
||||||
|
|
Loading…
Reference in a new issue