summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 20:10:44 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-06 20:13:51 +0100
commitbfab1a32d1d50875875800413b6f399689ec6d04 (patch)
tree7f994feece86caf4ea8e3a609eab73713d4f9076 /core/src
parenta0acaba86650d52e59dd50ac8b6863e26666b90b (diff)
downloadiced-bfab1a32d1d50875875800413b6f399689ec6d04.tar.gz
iced-bfab1a32d1d50875875800413b6f399689ec6d04.tar.bz2
iced-bfab1a32d1d50875875800413b6f399689ec6d04.zip
Fix documentation of `window::Event::Opened`
Diffstat (limited to 'core/src')
-rw-r--r--core/src/window/event.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/window/event.rs b/core/src/window/event.rs
index 4e2751ee..45d29179 100644
--- a/core/src/window/event.rs
+++ b/core/src/window/event.rs
@@ -9,8 +9,8 @@ pub enum Event {
/// A window was opened.
Opened {
/// The position of the opened window. This is relative to the top-left corner of the desktop
- /// the window is on, including virtual desktops. Refers to window's "inner" position,
- /// or the client area, in logical pixels.
+ /// the window is on, including virtual desktops. Refers to window's "outer" position,
+ /// or the window area, in logical pixels.
///
/// **Note**: Not available in Wayland.
position: Option<Point>,