You are not logged in.
Pages: 1
Debain Bullseye.
This is, how the setting manager looks in language setting EN
[url=https://imgur.com/N4yi7sA.png]
[/url]
and this in setting DE
[url=https://imgur.com/oYJ6Y61.png]
[/url]
Nearly half of the text is somehow cropped.
Is there a way to change the icon spacing or the text itself?
It just looks a mess .....
br KH
Offline
Unfortunately, you can't apply rules to individual icons and items in the list. You can decrease text size until everything fits in with this rule:
.exoiconview.view * {
font-size: 10px;
}
You can also try adding this declaration:
-gtk-icon-transform: scale(0.5);
but that doesn't seem to be affecting text spacing at all, only scales the icons down.
You need to append these to your ~/.config/gtk-3.0/gtk.css file.
Xubuntu 20.04
Offline
If you don't mind recompiling yourself, you can edit this line and set TEXT_WIDTH to whatever you see fit:
https://gitlab.xfce.org/xfce/xfce4-sett … alog.c#L45
#define TEXT_WIDTH (128)
Perhaps you can even modify it to ellipsize long words:
https://gitlab.xfce.org/xfce/xfce4-sett … og.c#L1153
"wrap-mode", PANGO_ELLIPSIZE_END,
I don't know if this'll work, but worth a shot.
Last edited by KBar (2022-04-29 08:33:02)
Xubuntu 20.04
Offline
@KBar. Thank you for having a look.
I think, the Debian developers handled the transformation to DE a bit sloppy here.
Have to admit, recompiling is out of scope for me, but anyway ....
br KH
Offline
Pages: 1