Is it possible to change the font size of a GraphNode in godot 4?
I can change the font size in a label using a custom LabelSettings or using the "theme_override_font_sizes/font_size" theme override. I also can change the font size in a RichTextLabel using the "theme_override_font_sizes/[normal|bold|italics|bold_italics|mono]_font_size" overrides. But I wasn"t able to find anything to change the font size of a GraphNode.
The GraphNode does use the "default_font" and "default_font_size" from the theme defined in the project settings, at "gui/theme/custom". But I haven't found any way to change the font size to something different from the project theme settings.
[EDIT]
I forgot that all controls can have a custom theme (the "theme" property), and as such I could use this to give a custom font size for anything (not only GraphNodes). This already solves my problem, but It would be nice if all text related nodes could accept labelsettings or at least had font related overrides...