Skip to content

Commit

Permalink
chore: dev version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git committed Jan 9, 2025
1 parent 81dfa1f commit 0bd9235
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -648,10 +648,10 @@ impl LogViewerApp {

if self.show_last_filename {
if let Some(filename) = self.last_filename.lock().unwrap().as_ref() {
let label = ui.label(format!("Filename: {}", filename.display()));
let _label = ui.label(format!("Filename: {}", filename.display()));
#[cfg(not(target_arch = "wasm32"))]
if let Some(folder) = self.start_open_path.lock().unwrap().as_ref() {
label.on_hover_text(folder.display().to_string());
_label.on_hover_text(folder.display().to_string());
}
}
}
Expand Down

0 comments on commit 0bd9235

Please sign in to comment.