Replies: 2 comments 2 replies
|
👋 Thank you for opening this issue! Summary: The user wants to change the global default font in draw.io desktop from what appears to be Helvetica to a different font, and is asking how to configure this default, as they cannot find where the Helvetica default is set in the Extras > Configuration settings. 📝 Additional Information NeededTo help us investigate this more effectively, could you please provide:
🤖 This is an automated response to help with initial triage. A human maintainer will review this issue. If you've provided all the requested information, no further action is needed - we'll get back to you soon! |
|
The Default Fonts and Custom Fonts sections only populate the font dropdown, they don't change the default font. The default for new cells comes from the default vertex style, so editing that was the right idea, but the value has to be valid JSON or the dialog ignores it silently, which is probably what happened. Extras > Configuration, search "vertex" (searching "font" won't find it), then set Default Vertex Style (JSON) to: {"fontFamily": "Verdana"}Click Apply, then fully restart the app. New text elements and shapes will use that font. Edge labels take their font from the edge style, so set the same in Default Edge Style (JSON) if you want those too. Font size works the same way, e.g. Equivalent config via the JSON tab of the same dialog: {
"defaultVertexStyle": {"fontFamily": "Verdana"},
"defaultEdgeStyle": {"fontFamily": "Verdana"}
}This only affects newly created cells, existing text keeps its font. The font must be installed on your system. Verified on 31.0.2. We'll fix the dialog so invalid JSON shows an error instead of being dropped silently. |
Uh oh!
There was an error while loading. Please reload this page.
I'm using the latest desktop 31.0.2 on W11.
The default global font appears to be Helvetica, which appears when I start new text. I'd like to change it but can't find where Helvetica is in the Extras - Configuration. I've only seen Arial.
All reactions