fix some (but far from all) visual bugs

This commit is contained in:
Jana Dönszelmann 2026-03-31 17:03:41 +02:00
parent d0bc7e952c
commit b668a894c7
No known key found for this signature in database
7 changed files with 114 additions and 104 deletions

View file

@ -641,9 +641,9 @@ impl Widget for &mut App {
{
let full_file_path = canonical_rustc_root.join(&file);
Hyperlink::new(
Line::from(format!("In file: {}", file.display()))
Line::from(format!("In file: {}:{line}", file.display()))
.style(styles.default),
format!("file://{}:{line}", full_file_path.display()),
format!("file://{}", full_file_path.display()),
)
.render(first_line, buf);
} else {