Remove padding and margin from layout.go

This commit is contained in:
BoppreH 2014-06-26 15:37:19 -03:00
parent 52bccbc8da
commit 85f759ea5f
1 changed files with 2 additions and 6 deletions

View File

@ -1,14 +1,12 @@
package ui package ui
// Recursively removes border margins and padding from controls, replaces // Recursively replaces nils with stretchy empty spaces and changes the orientation
// nil values with stretchy spaces and reorients nested stack to have // of inner stack so they are perpenticular to each other.
// opposing orientations.
func resetControls(parent *Stack) { func resetControls(parent *Stack) {
for i, control := range parent.controls { for i, control := range parent.controls {
switch control.(type) { switch control.(type) {
case *Stack: case *Stack:
stack := control.(*Stack) stack := control.(*Stack)
stack.borderMargin = 0
stack.orientation = !parent.orientation stack.orientation = !parent.orientation
resetControls(stack) resetControls(stack)
case nil: case nil:
@ -30,8 +28,6 @@ func Layout(controls ...Control) *Stack {
stretchy: make([]bool, len(controls)), stretchy: make([]bool, len(controls)),
width: make([]int, len(controls)), width: make([]int, len(controls)),
height: make([]int, len(controls)), height: make([]int, len(controls)),
padding: 10,
borderMargin: 15,
} }
resetControls(stack) resetControls(stack)