diff options
| author | Daniel J. Ramirez | 2017-11-09 19:36:19 -0600 |
|---|---|---|
| committer | Daniel J. Ramirez | 2017-11-09 19:38:48 -0600 |
| commit | e524cc7135134f1bdb5a074aa0fb7baf172d4fa4 (patch) | |
| tree | 18d0c4d24026d9a0e33306b917a890373f2c03f5 /editor/project_manager.cpp | |
| parent | 0de6cba7e7e114f71fabb3dbe02cf260f7d3e2c6 (diff) | |
| download | godot-e524cc7135134f1bdb5a074aa0fb7baf172d4fa4.tar.gz godot-e524cc7135134f1bdb5a074aa0fb7baf172d4fa4.tar.zst godot-e524cc7135134f1bdb5a074aa0fb7baf172d4fa4.zip | |
Fixed project manager and dialog fonts.
Diffstat (limited to 'editor/project_manager.cpp')
| -rw-r--r-- | editor/project_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 18416868e..5bfdd73aa 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -1053,7 +1053,7 @@ void ProjectManager::_load_recent_projects() { ec->set_custom_minimum_size(Size2(0, 1)); vb->add_child(ec); Label *title = memnew(Label(project_name)); - title->add_font_override("font", gui_base->get_font("large", "Fonts")); + title->add_font_override("font", gui_base->get_font("title", "EditorFonts")); title->add_color_override("font_color", font_color); title->set_clip_text(true); vb->add_child(title); @@ -1492,7 +1492,6 @@ ProjectManager::ProjectManager() { CenterContainer *ccl = memnew(CenterContainer); Label *l = memnew(Label); l->set_text(_MKSTR(VERSION_NAME) + String(" - ") + TTR("Project Manager")); - l->add_font_override("font", gui_base->get_font("doc", "EditorFonts")); ccl->add_child(l); top_hb->add_child(ccl); top_hb->add_spacer(); |
