diff options
Diffstat (limited to 'src/events.rs')
-rw-r--r-- | src/events.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/events.rs b/src/events.rs index 3e2143a..826a7cb 100644 --- a/src/events.rs +++ b/src/events.rs @@ -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), |