summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-10-31 03:50:22 -0500
committerJeff Carr <[email protected]>2021-10-31 03:50:22 -0500
commite5638b8079728e66b09071ec8af1d2b423b9eb76 (patch)
tree8c91e0984492b2abab1086870caddcecbbfb491a /structs.go
parentedceb19a33643419d0e367d36a7753fb68ede470 (diff)
NODE: add a button in the hole that doesn't use the other hole
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index 13dc2ea..c15f4b7 100644
--- a/structs.go
+++ b/structs.go
@@ -105,11 +105,11 @@ type GuiWindow struct {
UiTab *ui.Tab // if this != nil, the window is 'tabbed'
}
-func (gw *GuiWindow) Dump() {
- log.Println("gui.GuiWindow.Dump() Name = ", gw.Name)
- log.Println("gui.GuiWindow.Dump() node = ", gw.node)
- log.Println("gui.GuiWindow.Dump() Width = ", gw.Width)
- log.Println("gui.GuiWindow.Dump() Height = ", gw.Height)
+func (w *GuiWindow) Dump() {
+ log.Println("gui.GuiWindow.Dump() Name = ", w.Name)
+ log.Println("gui.GuiWindow.Dump() node = ", w.node)
+ log.Println("gui.GuiWindow.Dump() Width = ", w.Width)
+ log.Println("gui.GuiWindow.Dump() Height = ", w.Height)
}
// GuiBox is any type of ui.Hbox or ui.Vbox