diff options
| author | Jeff Carr <[email protected]> | 2023-04-28 10:35:57 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-28 10:35:57 -0500 |
| commit | 923f7721cca66d84dea77ffd9640d793803142ee (patch) | |
| tree | 824c9a2b83f574c37279c8526a1566035e78c2bb /debugGochan.go | |
| parent | 03942de00e133daf59da8ed3b6c3e71ce8afe316 (diff) | |
s/Config/me/ to remove direct access to anything
since most everything needs to be passed to the toolkits
everything should be accessed via func()'s
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debugGochan.go')
| -rw-r--r-- | debugGochan.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debugGochan.go b/debugGochan.go index ad70fbd..5ac07a8 100644 --- a/debugGochan.go +++ b/debugGochan.go @@ -18,7 +18,7 @@ func (n *Node) DebugGoChannels(makeWindow bool) { // make a new window // make a new tab in the existing window if (makeWindow) { - w = Config.rootNode.NewWindow("Debug GO Channels") + w = me.rootNode.NewWindow("Debug GO Channels") w.Custom = w.StandardClose } else { w = n.NewTab("Chan") |
