diff options
Diffstat (limited to 'native/src/window/event.rs')
-rw-r--r-- | native/src/window/event.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/native/src/window/event.rs b/native/src/window/event.rs index 64f2b8d8..691af29a 100644 --- a/native/src/window/event.rs +++ b/native/src/window/event.rs @@ -13,10 +13,9 @@ pub enum Event { /// A window was resized. Resized { - /// The new width of the window (in units) + /// The new logical width of the window width: u32, - - /// The new height of the window (in units) + /// The new logical height of the window height: u32, }, |