Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33e1454

Browse files
committedOct 6, 2024·
buttons on top
1 parent 6d6462a commit 33e1454

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎client/src/dialog_ui.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ where
5454
}
5555
}
5656

57-
pub fn show_window<F, R>(window: Window, f: F) -> (R, bool)
57+
fn show_window<F, R>(window: Window, f: F) -> (R, bool)
5858
where
5959
F: FnOnce(&mut Ui) -> R,
6060
{

‎client/src/player_ui.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
use crate::client::Features;
2-
use crate::client_state::{
3-
ActiveDialog, ShownPlayer, State, StateUpdate, OFFSET, ZOOM,
4-
};
2+
use crate::client_state::{ActiveDialog, ShownPlayer, State, StateUpdate, OFFSET, ZOOM};
53
use crate::happiness_ui::start_increase_happiness;
64
use macroquad::math::vec2;
75
use macroquad::prelude::*;

0 commit comments

Comments
 (0)
Please sign in to comment.