Fix bad events

This commit is contained in:
Tomaka17 2014-07-30 13:11:49 +02:00
parent 838cc2b325
commit aa7d88dbda
4 changed files with 7 additions and 10 deletions

View file

@ -1,11 +1,8 @@
#[deriving(Clone,Show)]
pub enum Event {
/// The position of the window has changed.
PositionChanged(uint, uint),
/// The size of the window has changed.
SizeChanged(uint, uint),
Resized(uint, uint),
/// The position of the window has changed.
Moved(int, int),