summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
Diffstat (limited to 'window.go')
-rw-r--r--window.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/window.go b/window.go
index f87b27b..7c0250d 100644
--- a/window.go
+++ b/window.go
@@ -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
+}