Skip to content

Commit

Permalink
add image name to bottom line
Browse files Browse the repository at this point in the history
  • Loading branch information
Kl4rry committed May 25, 2024
1 parent 2321910 commit c7b02c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ impl App {
}

if let Some(image) = self.image_view.as_mut() {
ui.label(format!("{}", self.current_filename));
ui.label(format!("{} x {}", image.size.x, image.size.y));
ui.label(format!("Zoom: {}%", (image.scale * 100.0).round()));

Expand Down

0 comments on commit c7b02c9

Please sign in to comment.