aboutsummaryrefslogtreecommitdiffstats
path: root/src/events.rs
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2014-12-18 10:57:12 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2014-12-18 10:57:12 +1000
commit435c64f4732dbf6fa4e92d04a962e42e34f21f1a (patch)
tree1231a006d0cc59220a598608412b0765f770618e /src/events.rs
parent9dc5689eef87cace5e6ac6b5438928a1c99688c4 (diff)
downloadglutin-435c64f4732dbf6fa4e92d04a962e42e34f21f1a.tar.gz
glutin-435c64f4732dbf6fa4e92d04a962e42e34f21f1a.zip
Fix event name
Diffstat (limited to 'src/events.rs')
-rw-r--r--src/events.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/events.rs b/src/events.rs
index 3cb81ff..beafbec 100644
--- a/src/events.rs
+++ b/src/events.rs
@@ -32,8 +32,8 @@ pub enum Event {
/// An event from the mouse has been received.
MouseInput(ElementState, MouseButton),
- /// The window should be redrawn.
- Refresh,
+ /// The event loop was woken up by another thread.
+ Awakened,
}
pub type ScanCode = u8;