diff options
| author | Jeff Carr <[email protected]> | 2021-10-31 07:06:10 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-31 07:06:10 -0500 |
| commit | 9675bc19a65dd7cd00e05983ea72c35c2753026b (patch) | |
| tree | 4390395f42180de92b40498b90e418bdb6be1fc9 /cmds/gui-example/main.go | |
| parent | fe6a625b30caec96a1be12009da7c9dbd5f8d3ff (diff) | |
NODE: migrate more of my personal gui app
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cmds/gui-example/main.go')
| -rw-r--r-- | cmds/gui-example/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/gui-example/main.go b/cmds/gui-example/main.go index 9fcb971..8eae878 100644 --- a/cmds/gui-example/main.go +++ b/cmds/gui-example/main.go @@ -27,14 +27,14 @@ func initGUI() { gui.Config.Height = 480 gui.Config.Exit = myExit node1 := gui.NewWindow() - node1.AddDemoTab("A Simple Tab Demo") + addDemoTab(node1, "A Simple Tab Demo") gui.Config.Title = "WIT GUI Window Demo 2" gui.Config.Width = 640 gui.Config.Height = 240 gui.Config.Exit = myExit node2 := gui.NewWindow() - node2.AddDemoAndlabsUiTab("A Simple andlabs/ui Tab Demo") + node2.DemoAndlabsUiTab("A Simple andlabs/ui Tab Demo") } // This demonstrates how to properly interact with the GUI |
