diff options
| author | Jeff Carr <[email protected]> | 2025-10-18 09:24:29 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-18 09:24:29 -0500 |
| commit | 6975a01480e10ae5bffc2b928702e6690a476ba4 (patch) | |
| tree | 0eb502d85e7836b10063cfd1e9c7a864dc807071 | |
| parent | b013bb9667d6639c072b3361e9a30a24219b565f (diff) | |
gui is limping around nowv0.0.40
| -rw-r--r-- | gui.go | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -88,10 +88,16 @@ func Gui() *GuiPrep { arg.Register(&argGui) prepGui = new(GuiPrep) - prepGui.rootn = gui.PreInit(postMustParse) + // prepGui.rootn = gui.PreInit(postMustParse) + prepGui.rootn = gui.PreInit() return prepGui } +// me.gui = me.myGui.Init() +func (g *GuiPrep) Init() *gui.Node { + return g.rootn +} + func (g *GuiPrep) Start() error { // me.myGui.InitEmbed(resources) if pname, err := g.rootn.Default(); err != nil { |
