diff options
author | kobewi <kobewi4e@gmail.com> | 2021-07-08 15:29:15 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-07-13 15:42:09 +0200 |
commit | f4b361dd1536edaa902d59759addbf46e25e3505 (patch) | |
tree | 4991068a17c1367cd60c4fb263970ed35230863b /editor/editor_about.cpp | |
parent | b44b277f6f2f22124c47d63551591056791474c0 (diff) | |
download | redot-engine-f4b361dd1536edaa902d59759addbf46e25e3505.tar.gz |
Add header theme type variations to labels
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index e28ba9a184..1f1446a8a8 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -92,6 +92,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const List<St const char *const *names_ptr = p_src[i]; if (*names_ptr) { Label *lbl = memnew(Label); + lbl->set_theme_type_variation("HeaderSmall"); lbl->set_text(p_sections[i]); vbc->add_child(lbl); |