getlantern / systray

a cross platfrom Go library to place an icon and menu in the notification area
Apache License 2.0
3.28k stars 451 forks source link

Fix notifyIconData struct #253

Open chhu0830 opened 1 year ago

chhu0830 commented 1 year ago

The Windows Document specifies that uTimeout and uVersion belong to the DUMMYUNIONNAME union. However, the notifyIconData struct defined in systray_windows.go uses two uint32 instead, which is not consistent with the Windows Document.

Currently, tooltips can only display the first 64 bytes. To display the entire 128 bytes, one of the uTimeout or uVersion fields defined in notifyIconData needs be removed

anacrolix commented 1 year ago

Do you want to make a PR?