moses-palmer / pystray

GNU General Public License v3.0
473 stars 59 forks source link

Implement large notification icon support for windows #85

Open ogzhnsbs opened 3 years ago

ogzhnsbs commented 3 years ago

On Windows 10, toast notification icon seems very small.

before

We can force it to show large icon by setting dwInfoFlags parameter to NIIF_ICON_MASK for NOTIFYICONDATA.

But this change that is not enough to get good result. We need to change LoadImage function cx,cy parameters to load the icon image with like 128x128 pixels. Otherwise it seems blurry.

After changes, toast notification icon seems as it's supposed to be.

after