-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
area/renderer-dombrowser/firefoxOnly affects Mozilla FirefoxOnly affects Mozilla Firefoxtype/bugSomething is misbehavingSomething is misbehaving
Milestone
Description
Details
- Browser and browser version: FireFox 115.0.1 (snap version)
- OS version: Ubuntu 22.04.2 LTS
- xterm.js version: 5.2.1
Steps to reproduce
- Display 80 characters on a line
- Try some options.fontSize value until the last character disappear (wrapped).
Size 21 or 24 in my case (may depends on installed fonts so difficult to reproduce).
If the cursor is moved on the hidden last char, it also disappear.
Fix
The line element inline style is in my case:
{
width: 812px;
height: 21.3333px;
line-height: 21.3333px;
overflow: hidden;
}Two ways to fix:
- Increase the width by 1 pixel (not very nice)
- Add
white-space: nowrap(it is a more resilient fix)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area/renderer-dombrowser/firefoxOnly affects Mozilla FirefoxOnly affects Mozilla Firefoxtype/bugSomething is misbehavingSomething is misbehaving