summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/main.go b/main.go
index 207d971..8e469e1 100644
--- a/main.go
+++ b/main.go
@@ -184,12 +184,13 @@ func startS(name string) *Node {
if (aplug == nil) {
return Config.rootNode
}
+ /*
// will this really work on mswindows & macos?
f := func() {
}
go Main(f)
+ */
sleep(1) // temp hack until chan communication is setup
- Config.rootNode.Redraw(aplug)
return Config.rootNode
}
@@ -203,8 +204,8 @@ func Main(f func()) {
if (os.Getenv("DISPLAY") == "") {
InitPlugins([]string{"gocui"})
} else {
- InitPlugins([]string{"andlabs", "gocui"})
- // InitPlugins([]string{"gocui", "andlabs"})
+ // InitPlugins([]string{"andlabs", "gocui"})
+ InitPlugins([]string{"gocui", "andlabs"})
}
for _, aplug := range allPlugins {