qdot / systray-rs

Allows rust applications to show a platform specific system tray icon and menu.
BSD 3-Clause "New" or "Revised" License
170 stars 66 forks source link

[Windows] Explicit destroy `WindowsLoopData` after returning from message loop #20

Open mzji opened 7 years ago

mzji commented 7 years ago

i.e. Insert following code between line 260 and line 261 of file src/api/win32/mod.rs @ rev 3a013db7fce03dff55559e0692da4122c0d5f73a :

                // Destroy window info. Causes deadlock in release build.
                WININFO_STASH.with(|stash| {
                    (*stash.borrow_mut()) = None;
                });