summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 09b2bc1..b2054b9 100644
--- a/main.go
+++ b/main.go
@@ -123,9 +123,9 @@ func New() *Node {
// try to load andlabs, if that doesn't work, fall back to the console
func (n *Node) Default() *Node {
- if (guiArg.Gui != "") {
- log(logError, "New.Default() try toolkit =", guiArg.Gui)
- return n.LoadToolkit(guiArg.Gui)
+ if (argGui.GuiPlugin != "") {
+ log(logError, "New.Default() try toolkit =", argGui.GuiPlugin)
+ return n.LoadToolkit(argGui.GuiPlugin)
}
// if DISPLAY isn't set, return since gtk can't load
// TODO: figure out how to check what to do in macos and mswindows