Skip to content

Commit

Permalink
Rename ui_update_current_path_display
Browse files Browse the repository at this point in the history
  • Loading branch information
fluxxcode committed Feb 27, 2024
1 parent ec72b3d commit 127ba63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/file_dialog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -898,13 +898,13 @@ impl FileDialog {

match self.path_edit_visible {
true => self.ui_update_path_edit(ui, width, EDIT_BUTTON_SIZE),
false => self.ui_update_current_path_display(ui, width, EDIT_BUTTON_SIZE),
false => self.ui_update_path_display(ui, width, EDIT_BUTTON_SIZE),
}
});
}

/// Updates the view when the currently open path with the individual sections is displayed.
fn ui_update_current_path_display(
fn ui_update_path_display(
&mut self,
ui: &mut egui::Ui,
width: f32,
Expand Down

0 comments on commit 127ba63

Please sign in to comment.