Fix documentation of `PlatformSpecific` settings

This commit is contained in:
Héctor Ramón 2021-06-01 18:57:36 +07:00
parent f04bc94b80
commit 903570846e
1 changed files with 3 additions and 2 deletions

View File

@ -4,9 +4,10 @@
/// The platform specific window settings of an application. /// The platform specific window settings of an application.
#[derive(Debug, Clone, Copy, PartialEq, Eq)] #[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PlatformSpecific { pub struct PlatformSpecific {
/// Parent Window /// Parent window
pub parent: Option<winapi::shared::windef::HWND>, pub parent: Option<winapi::shared::windef::HWND>,
/// Drap and Drop support
/// Drag and drop support
pub drag_and_drop: bool, pub drag_and_drop: bool,
} }