mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
68b21643f8
* fix(windows): restore taskbar thumbnail media buttons after deferred window show The Prev / Play-Pause / Next buttons in the Windows taskbar thumbnail preview stopped appearing. The taskbar code was unchanged; the regression came from the main window now starting hidden with a deferred show. ThumbBarAddButtons was still called at setup time, before the shell had created the window's taskbar button, so it returned S_OK but added nothing (no error logged). Register the shell's "TaskbarButtonCreated" message and add the buttons from the window subclass when it fires (first show, and again after an explorer restart), which is the documented requirement for ThumbBarAddButtons. * docs(changelog): note Windows taskbar media buttons fix (#1112)