Skip to content

Commit

Permalink
Temporarily remove windows window-specific awakened event. Needs to b…
Browse files Browse the repository at this point in the history
…e updated to non-window-specific Event.
  • Loading branch information
mitchmindtree committed May 31, 2017
1 parent 8f0ef51 commit 2b55b2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/platform/windows/callback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
},

Expand Down

0 comments on commit 2b55b2e

Please sign in to comment.