mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Fix bold fonts on Linux
I'm not sure how this performs on other platforms, but on mine it needs at least 63 weight for bold. This is because there is a normal font at weight 40 and a bold font at weight 85. From 63+ it rounds to the bold font with the closest weight then. Contributes to issue CURA-6025.
This commit is contained in:
parent
66aeb2d1dd
commit
c92a0f1fd4
1 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"large_bold": {
|
||||
"size": 1.35,
|
||||
"weight": 60,
|
||||
"weight": 63,
|
||||
"family": "Noto Sans"
|
||||
},
|
||||
"medium": {
|
||||
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
"medium_bold": {
|
||||
"size": 1.16,
|
||||
"weight": 60,
|
||||
"weight": 63,
|
||||
"family": "Noto Sans"
|
||||
},
|
||||
"default": {
|
||||
|
@ -31,7 +31,7 @@
|
|||
},
|
||||
"default_bold": {
|
||||
"size": 0.95,
|
||||
"weight": 60,
|
||||
"weight": 63,
|
||||
"family": "Noto Sans"
|
||||
},
|
||||
"default_italic": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue