Skip to content

Commit 9811405

Browse files
committed
Fix formatting errors
1 parent 5440afe commit 9811405

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

winit-win32/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,6 @@ impl WindowAttributesWindows {
642642
}
643643

644644
/// This sets or removes the WS_EX_NOACTIVATE flag
645-
///
646645
/// The default is `false`
647646
pub fn with_no_activate(mut self, no_activate: bool) -> Self {
648647
self.no_activate = no_activate;

winit-win32/src/window_state.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ use windows_sys::Win32::UI::WindowsAndMessaging::{
1313
SWP_NOREPOSITION, SWP_NOSIZE, SWP_NOZORDER, SendMessageW, SetWindowLongW, SetWindowPos,
1414
ShowWindow, WINDOW_EX_STYLE, WINDOW_STYLE, WINDOWPLACEMENT, WS_BORDER, WS_CAPTION, WS_CHILD,
1515
WS_CLIPCHILDREN, WS_CLIPSIBLINGS, WS_EX_ACCEPTFILES, WS_EX_APPWINDOW, WS_EX_LAYERED,
16-
WS_EX_NOACTIVATE, WS_EX_NOREDIRECTIONBITMAP, WS_EX_TOPMOST, WS_EX_TRANSPARENT, WS_EX_WINDOWEDGE,
17-
WS_MAXIMIZE, WS_MAXIMIZEBOX, WS_MINIMIZE, WS_MINIMIZEBOX, WS_OVERLAPPEDWINDOW, WS_POPUP,
18-
WS_SIZEBOX, WS_SYSMENU, WS_VISIBLE,
16+
WS_EX_NOACTIVATE, WS_EX_NOREDIRECTIONBITMAP, WS_EX_TOPMOST, WS_EX_TRANSPARENT,
17+
WS_EX_WINDOWEDGE, WS_MAXIMIZE, WS_MAXIMIZEBOX, WS_MINIMIZE, WS_MINIMIZEBOX,
18+
WS_OVERLAPPEDWINDOW, WS_POPUP, WS_SIZEBOX, WS_SYSMENU, WS_VISIBLE,
1919
};
2020
use winit_core::icon::Icon;
2121
use winit_core::keyboard::ModifiersState;

0 commit comments

Comments
 (0)