Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions systray/systray_real.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (s *Systray) start() {
menuVer.Disable()

// Add links
mURL := systray.AddMenuItem("Go to Arduino Create", "Arduino Create")
mURL := systray.AddMenuItem("Go to Arduino Cloud", "Arduino Cloud")
mDebug := systray.AddMenuItem("Open Debug Console", "Debug console")
mConfig := systray.AddMenuItem("Open Configuration", "Config File")

Expand Down Expand Up @@ -85,7 +85,7 @@ func (s *Systray) start() {
for {
select {
case <-mURL.ClickedCh:
_ = open.Start("https://create.arduino.cc")
_ = open.Start("https://app.arduino.cc")
case <-mDebug.ClickedCh:
_ = open.Start(s.DebugURL())
case <-mConfig.ClickedCh:
Expand Down