Fix links wrapping into oblivion
This commit is contained in:
parent
972e4938aa
commit
967293db37
2 changed files with 2 additions and 1 deletions
|
|
@ -36,6 +36,7 @@ Procedure when bumping the version number:
|
|||
### Fixed
|
||||
|
||||
- Nick color in rare edge cases
|
||||
- Message link list rendering bug
|
||||
|
||||
## v0.8.3 - 2024-05-20
|
||||
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ impl LinksState {
|
|||
Link::Room(name) => text.then(format!("&{name}"), Style::new().blue().bold()),
|
||||
};
|
||||
|
||||
Text::new(text)
|
||||
Text::new(text).with_wrap(false)
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue