summaryrefslogtreecommitdiff
path: root/toolkit/andlabs/group.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
committerJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
commit4e7bbd89900a733593f0848778103c1cf1a7145d (patch)
tree22cd22124dd3ecba7c2a866b882d39aaf790d670 /toolkit/andlabs/group.go
parent53ce3a8252090d5fb75d7fc1e3cd75a72c1415c6 (diff)
reorg to final resting place at go.wit.com/gui/guiv0.9.5
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/group.go')
-rw-r--r--toolkit/andlabs/group.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/toolkit/andlabs/group.go b/toolkit/andlabs/group.go
deleted file mode 100644
index b7c450e..0000000
--- a/toolkit/andlabs/group.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package main
-
-import (
- "github.com/andlabs/ui"
- _ "github.com/andlabs/ui/winmanifest"
-)
-
-func (p *node) newGroup(n *node) {
- log(debugToolkit, "NewGroup()", n.Name)
-
- newt := new(guiWidget)
-
- log(debugToolkit, "NewGroup() create", n.Name)
-
- g := ui.NewGroup(n.Name)
- g.SetMargined(margin)
- newt.uiGroup = g
- newt.uiControl = g
-
- n.tk = newt
- p.place(n)
-}