DEBUG: add DumpMap()
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
ccb91460ca
commit
9dc8d79062
|
@ -68,7 +68,7 @@ func CreateButton(box *GuiBox, custom func(*GuiButton), name string, values inte
|
|||
|
||||
Data.AllButtons = append(Data.AllButtons, newB)
|
||||
|
||||
box.UiBox.Append(newB.B, false)
|
||||
box.Append(newB.B, false)
|
||||
return newB
|
||||
}
|
||||
|
||||
|
@ -110,6 +110,6 @@ func CreateColorButton(box *GuiBox, custom func(*GuiButton), name string, values
|
|||
Data.MouseClick(&newCB)
|
||||
}
|
||||
})
|
||||
box.UiBox.Append(newCB.CB, false)
|
||||
box.Append(newCB.CB, false)
|
||||
return &newCB
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue