Skip to content

Commit 35cb0e6

Browse files
authored
change label and url in the tray icon menu (#929)
1 parent 5e37994 commit 35cb0e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: systray/systray_real.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (s *Systray) start() {
5555
menuVer.Disable()
5656

5757
// Add links
58-
mURL := systray.AddMenuItem("Go to Arduino Create", "Arduino Create")
58+
mURL := systray.AddMenuItem("Go to Arduino Cloud", "Arduino Cloud")
5959
mDebug := systray.AddMenuItem("Open Debug Console", "Debug console")
6060
mConfig := systray.AddMenuItem("Open Configuration", "Config File")
6161

@@ -85,7 +85,7 @@ func (s *Systray) start() {
8585
for {
8686
select {
8787
case <-mURL.ClickedCh:
88-
_ = open.Start("https://create.arduino.cc")
88+
_ = open.Start("https://app.arduino.cc")
8989
case <-mDebug.ClickedCh:
9090
_ = open.Start(s.DebugURL())
9191
case <-mConfig.ClickedCh:

0 commit comments

Comments
 (0)