Fix links wrapping into oblivion

This commit is contained in:
Joscha 2025-02-23 22:54:03 +01:00
parent 972e4938aa
commit 967293db37
2 changed files with 2 additions and 1 deletions

View file

@ -36,6 +36,7 @@ Procedure when bumping the version number:
### Fixed ### Fixed
- Nick color in rare edge cases - Nick color in rare edge cases
- Message link list rendering bug
## v0.8.3 - 2024-05-20 ## v0.8.3 - 2024-05-20

View file

@ -101,7 +101,7 @@ impl LinksState {
Link::Room(name) => text.then(format!("&{name}"), Style::new().blue().bold()), Link::Room(name) => text.then(format!("&{name}"), Style::new().blue().bold()),
}; };
Text::new(text) Text::new(text).with_wrap(false)
}); });
} }