diff --git a/systray_windows.go b/systray_windows.go index 901c8efe..8e8b17a6 100644 --- a/systray_windows.go +++ b/systray_windows.go @@ -125,13 +125,6 @@ func addOrUpdateMenuItem(item *MenuItem) { item.id = nextActionId action = walk.NewAction() action.Triggered().Attach(func() { - // Ensure there is at least one receiver to prevent deadlock - go func() { - select { - case <-item.ClickedCh: - } - }() - item.ClickedCh <- struct{}{} }) if err := notifyIcon.ContextMenu().Actions().Add(action); err != nil {