summaryrefslogtreecommitdiffstats
path: root/editor/editor_about.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-07-08 15:29:15 +0200
committerkobewi <kobewi4e@gmail.com>2021-07-13 15:42:09 +0200
commitf4b361dd1536edaa902d59759addbf46e25e3505 (patch)
tree4991068a17c1367cd60c4fb263970ed35230863b /editor/editor_about.cpp
parentb44b277f6f2f22124c47d63551591056791474c0 (diff)
downloadredot-engine-f4b361dd1536edaa902d59759addbf46e25e3505.tar.gz
Add header theme type variations to labels
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r--editor/editor_about.cpp1
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);