Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Dec 3, 2023
1 parent 4bd59bd commit 498157b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/ui/src/windows/global_config_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ impl luminol_core::Window for Window {
open: &mut bool,
_update_state: &mut luminol_core::UpdateState<'_>,
) {
egui::Window::new(self.name()).open(open).show(ctx, |_ui| {});
egui::Window::new(self.name())
.open(open)
.show(ctx, |_ui| {});
}
}

0 comments on commit 498157b

Please sign in to comment.