diff options
| author | Jeff Carr <[email protected]> | 2021-10-04 21:33:03 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-04 21:33:03 -0500 |
| commit | b5b1528a29d42d01597cb15b317177ca2237e535 (patch) | |
| tree | 514173fcc7d399f8d3362f84604c3add36c8aee3 /window.go | |
| parent | 36cb4f8afcff24036af35e7f4c61e09d3e632a56 (diff) | |
TAB: code to more correctly handle gtk tabs
Signed-off-by: Jeff Carr <[email protected]>
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 +} |
