mirror of https://github.com/adamdruppe/arsd.git
bold fonts on linux were so wrong lol
This commit is contained in:
parent
156e02bee9
commit
d67fae5b1f
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue