Temporarily remove windows window-specific awakened event. Needs to be updated to non-window-specific Event.

This commit is contained in:
mitchmindtree 2017-05-31 16:11:06 +10:00
parent 8f0ef514b1
commit 2b55b2e0ef

View file

@ -410,7 +410,9 @@ pub unsafe extern "system" fn callback(window: winapi::HWND, msg: winapi::UINT,
},
x if x == *super::WAKEUP_MSG_ID => {
send_event(window, ::Event::Awakened);
// TODO: `Awakened` has been moved from the `WindowEvent` enum to the `Event` enum.
// This code needs to be updated to reflect this change.
//send_event(window, ::Event::Awakened);
0
},