summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@lich.io>2021-06-01 18:57:36 +0700
committerLibravatar Héctor Ramón <hector@lich.io>2021-06-01 18:57:36 +0700
commit903570846e51df260925c81851d733dce5955b41 (patch)
treeaddb9d2abd0756af792dae9c94ab73b402b23b2a /winit
parentf04bc94b80942857f8cc1e0d39658bd1eb633a06 (diff)
downloadiced-903570846e51df260925c81851d733dce5955b41.tar.gz
iced-903570846e51df260925c81851d733dce5955b41.tar.bz2
iced-903570846e51df260925c81851d733dce5955b41.zip
Fix documentation of `PlatformSpecific` settings
Diffstat (limited to 'winit')
-rw-r--r--winit/src/settings/windows.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/winit/src/settings/windows.rs b/winit/src/settings/windows.rs
index 68dadefd..fc26acd7 100644
--- a/winit/src/settings/windows.rs
+++ b/winit/src/settings/windows.rs
@@ -4,9 +4,10 @@
/// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PlatformSpecific {
- /// Parent Window
+ /// Parent window
pub parent: Option<winapi::shared::windef::HWND>,
- /// Drap and Drop support
+
+ /// Drag and drop support
pub drag_and_drop: bool,
}