bold fonts on linux were so wrong lol

This commit is contained in:
Adam D. Ruppe 2024-09-15 08:38:37 -04:00
parent 156e02bee9
commit d67fae5b1f
1 changed files with 9 additions and 2 deletions

View File

@ -8716,12 +8716,19 @@ class OperatingSystemFont : MeasurableFont {
add(":size=");
add(toInternal!string(size));
}
if(weight != FontWeight.dontcare) {
if(weight != FontWeight.dontcare && weight != 400) {
if(weight < 400)
add(":style=Light");
else
add(":style=Bold");
add(":weight=");
add(weightToString(weight));
}
if(italic)
if(italic) {
if(weight == FontWeight.dontcare)
add(":style=Italic");
add(":slant=100");
}
nameBuffer[nbp] = 0;