-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Labels
Description
Long messages that don't have enough spaces to line wrap get truncated.
I believe this is due to the draw() in line.rs and how it handles when there is no whitespace to split on.
// Not possible to split. Need to make sure we don't render out
// of bounds.
if col - pos_x < width {
if line >= first_line {
tb.change_cell(col, pos_y + line, char, sty.fg, sty.bg);
}
col += 1;
}
This isn't a huge problem. Personally, I would just resize the window and hope that the message/link can all fit, but it's probably a pain for people using a tiling window manager...
Tested on master

