cargo fmt

This commit is contained in:
ice_iix 2022-08-28 08:39:48 -07:00
parent 51b4abe7f3
commit 7f06b9918b
1 changed files with 3 additions and 9 deletions

View File

@ -664,9 +664,7 @@ fn handle_window_event<T>(
use std::f64::consts::PI;
if game.focused {
window
.set_cursor_grab(cursor_grab_mode)
.unwrap();
window.set_cursor_grab(cursor_grab_mode).unwrap();
window.set_cursor_visible(false);
if let Some(player) = game.server.player {
let rotation = game
@ -724,9 +722,7 @@ fn handle_window_event<T>(
&& !game.screen_sys.is_current_closable()
{
game.focused = true;
window
.set_cursor_grab(cursor_grab_mode)
.unwrap();
window.set_cursor_grab(cursor_grab_mode).unwrap();
window.set_cursor_visible(false);
} else if !game.focused {
#[cfg(not(target_arch = "wasm32"))]
@ -788,9 +784,7 @@ fn handle_window_event<T>(
screen::SettingsMenu::new(game.vars.clone(), true),
));
} else if game.screen_sys.is_current_closable() {
window
.set_cursor_grab(cursor_grab_mode)
.unwrap();
window.set_cursor_grab(cursor_grab_mode).unwrap();
window.set_cursor_visible(false);
game.focused = true;
game.screen_sys.pop_screen();