fix: temporalily remove the unsafe pointer HWND

This commit is contained in:
Richard 2022-06-15 20:10:15 -03:00 committed by bungoboingo
parent 5919325d9b
commit 00d6baf861
2 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PlatformSpecific {
/// Parent window
pub parent: Option<winit::platform::windows::HWND>,
// pub parent: Option<winit::platform::windows::HWND>,
/// Drag and drop support
pub drag_and_drop: bool,
@ -13,7 +13,7 @@ pub struct PlatformSpecific {
impl Default for PlatformSpecific {
fn default() -> Self {
Self {
parent: None,
// parent: None,
drag_and_drop: true,
}
}