We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fece02 commit 81dfa1fCopy full SHA for 81dfa1f
src/app.rs
@@ -648,7 +648,11 @@ impl LogViewerApp {
648
649
if self.show_last_filename {
650
if let Some(filename) = self.last_filename.lock().unwrap().as_ref() {
651
- ui.label(format!("Filename: {}", filename.display()));
+ let label = ui.label(format!("Filename: {}", filename.display()));
652
+ #[cfg(not(target_arch = "wasm32"))]
653
+ if let Some(folder) = self.start_open_path.lock().unwrap().as_ref() {
654
+ label.on_hover_text(folder.display().to_string());
655
+ }
656
}
657
658
if let Some(data) = self.data.as_ref() {
0 commit comments