We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bbd7da commit b717516Copy full SHA for b717516
trayicon.go
@@ -88,15 +88,19 @@ func setupSysTrayReal() {
88
// }()
89
90
go func() {
91
- <-mDebug.ClickedCh
92
- open.Run("http://localhost:8989")
93
- logAction("log on")
+ for {
+ <-mDebug.ClickedCh
+ logAction("log on")
94
+ open.Start("http://localhost:8989")
95
+ }
96
}()
97
98
// We can manipulate the systray in other goroutines
99
- <-mUrl.ClickedCh
- open.Run("http://create-staging.arduino.cc")
100
101
+ <-mUrl.ClickedCh
102
+ open.Start("http://create-staging.arduino.cc")
103
104
105
}
106
0 commit comments