Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Jul 1, 2024
1 parent b0160a4 commit 317a316
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/modals/src/event_graphic_picker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,7 @@ impl Modal {
.show(ui);
if out.response.changed() {
let matcher = fuzzy_matcher::skim::SkimMatcherV2::default();
*filtered_entries =
entries
*filtered_entries = entries
.iter()
.filter(|entry| {
matcher
Expand Down Expand Up @@ -529,7 +528,7 @@ impl Modal {
data.tile_id = None;
data.character_name = None;
}
Selected::Tile( id) => {
Selected::Tile(id) => {
data.tile_id = Some(*id);
data.character_name = None;
}
Expand Down

0 comments on commit 317a316

Please sign in to comment.