diff options
| author | Jeff Carr <[email protected]> | 2021-10-05 09:29:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-05 09:29:55 -0500 |
| commit | 1f216a0362a8512e9cfe63172ad4decaf3614037 (patch) | |
| tree | 8d8ab8080d96f2fbc1070fe18184e55da4b71afd /structs.go | |
| parent | b036f9fccbf6b20ec510a54c892c3ee2a166b6f1 (diff) | |
CODE: not sure, but it compiles and runs somehow
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
