diff options
author | 2024-01-09 23:29:00 +0100 | |
---|---|---|
committer | 2024-01-09 23:29:00 +0100 | |
commit | 90332acc4b18d7ea539459908b4e59517d8b48cb (patch) | |
tree | 7ce0ebd0f741a74ac11e7a5f45a4aad9e8f0f693 /core/src/window | |
parent | f5c6fa7338713a0430dcdfc5bd53f72103144f22 (diff) | |
parent | 082985ade8a108aa3ec1fe573411120b82da0cad (diff) | |
download | iced-90332acc4b18d7ea539459908b4e59517d8b48cb.tar.gz iced-90332acc4b18d7ea539459908b4e59517d8b48cb.tar.bz2 iced-90332acc4b18d7ea539459908b4e59517d8b48cb.zip |
Merge pull request #2189 from Calastrophe/master
Add functions to fetch if a window is maximized or minimized
Diffstat (limited to 'core/src/window')
-rw-r--r-- | core/src/window/event.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/window/event.rs b/core/src/window/event.rs index b9ee7aca..a14d127f 100644 --- a/core/src/window/event.rs +++ b/core/src/window/event.rs @@ -58,7 +58,7 @@ pub enum Event { /// for each file separately. FileHovered(PathBuf), - /// A file has beend dropped into the window. + /// A file has been dropped into the window. /// /// When the user drops multiple files at once, this event will be emitted /// for each file separately. |