diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-02 12:43:48 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-08-02 12:43:48 +0200 |
commit | d08c94daac0853344f23fff255bd0248bf9deeb8 (patch) | |
tree | 7e3304437a95634939f5528454064858eca676dc | |
parent | 2aeec39156960e734694576c2f831df900f17501 (diff) | |
download | glutin-d08c94daac0853344f23fff255bd0248bf9deeb8.tar.gz glutin-d08c94daac0853344f23fff255bd0248bf9deeb8.zip |
Remove Iconified and NeedRefresh events
-rw-r--r-- | src/events.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/events.rs b/src/events.rs index 826a7cb..41bfcfc 100644 --- a/src/events.rs +++ b/src/events.rs @@ -23,14 +23,6 @@ pub enum Event { /// The parameter is true if the window has gained focus, and false if it has lost focus. Focused(bool), - /// The window has been turned into an icon or restored. - /// - /// The parameter is true if the window has been iconified, and false if it has been restored. - Iconified(bool), - - /// The system asked that the content of this window must be redrawn. - NeedRefresh, - /// An element has been pressed. Pressed(Element), |