From 084bec8f54776e9b5a28e27a502376941044465b Mon Sep 17 00:00:00 2001 From: Umberto Baldi Date: Thu, 21 Mar 2024 19:28:21 +0100 Subject: [PATCH] change label and url in the tray icon menu --- systray/systray_real.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systray/systray_real.go b/systray/systray_real.go index d1d14f9b..9e4e5aac 100644 --- a/systray/systray_real.go +++ b/systray/systray_real.go @@ -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") @@ -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: