Skip to content

Commit b6f8ebb

Browse files
committed
cargo fmt
1 parent 33f0917 commit b6f8ebb

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/platform_impl/windows/dark_menu_bar.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ fn selected_background_brush() -> HBRUSH {
107107
const SELECTED_BACKGROUND_COLOR: u32 = 4276545;
108108
static SELECTED_BACKGROUND_BRUSH: OnceCell<HBrush> = OnceCell::new();
109109

110-
let hbrush = SELECTED_BACKGROUND_BRUSH.get_or_init(|| HBrush(CreateSolidBrush(SELECTED_BACKGROUND_COLOR)));
110+
let hbrush = SELECTED_BACKGROUND_BRUSH
111+
.get_or_init(|| HBrush(CreateSolidBrush(SELECTED_BACKGROUND_COLOR)));
111112
hbrush.as_ref().unwrap().0
112113
}
113114

0 commit comments

Comments
 (0)