diff options
Diffstat (limited to 'window.go')
| -rw-r--r-- | window.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -209,3 +209,10 @@ func CreateBlankWindow(title string, x int, y int) *GuiBox { return &box } + +func InitBlankWindow() ui.Control { + hbox := ui.NewHorizontalBox() + hbox.SetPadded(true) + + return hbox +} |
