Description
When increasing text scaling (text-scaling-factor) through the Cinnamon settings (Settings → Fonts → Text scaling), notifications display incorrectly — lines overlap each other.
Steps to reproduce
- Open System Settings → Fonts
- Set "Text scaling" > 1.0 (e.g., 1.6)
- Wait for any notification (or send one via notify-send)
- Observe that text lines in the notification overlap
Expected behavior
Text in notifications should properly adapt to the scaling factor (increase without overlapping).
Actual behavior
Text lines overlap. The notification container does not set line-height, and the block height does not adapt to the text scaling.
Environment
- Cinnamon: Cinnamon 6.6.7
- Theme: Mint-Y
- Font: Ubuntu 10
- text-scaling-factor: 1.6
Diagnosis
gsettings get org.gnome.desktop.interface text-scaling-factor
→ 1.6000000000000005
/usr/share/cinnamon/theme/cinnamon.css → #notification-body has no line-height
Workaround
Reduce text-scaling-factor to 1.0–1.25 or add custom CSS:
#notification-body {
line-height: 1.5;
}
Screenshots
See comments below.
Description
When increasing text scaling (text-scaling-factor) through the Cinnamon settings (Settings → Fonts → Text scaling), notifications display incorrectly — lines overlap each other.
Steps to reproduce
Expected behavior
Text in notifications should properly adapt to the scaling factor (increase without overlapping).
Actual behavior
Text lines overlap. The notification container does not set line-height, and the block height does not adapt to the text scaling.
Environment
Diagnosis
Workaround
Reduce text-scaling-factor to 1.0–1.25 or add custom CSS:
Screenshots
See comments below.