summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index d1a1680..0f1cd1b 100644
--- a/structs.go
+++ b/structs.go
@@ -118,7 +118,7 @@ func (s GuiBox) InitTab(title string) *ui.Tab {
window.SetChild(tab)
window.SetMargined(true)
- tab.Append(title, InitBlankWindow())
+ tab.Append(title, initBlankWindow())
tab.SetMargined(0, true)
// tab.SetMargined(1, true)
@@ -154,7 +154,7 @@ func (s GuiBox) AddTab2(title string, custom ui.Control) *ui.Tab {
}
func (s GuiBox) AddBoxTab(title string) *GuiBox {
- uiTab := s.AddTab2(title, InitBlankWindow())
+ uiTab := s.AddTab2(title, initBlankWindow())
tabSetMargined(uiTab)
var box *GuiBox