mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fixed project manager and dialog fonts.
This commit is contained in:
parent
0de6cba7e7
commit
e524cc7135
@ -122,20 +122,24 @@ void editor_register_fonts(Ref<Theme> p_theme) {
|
||||
dfmono->set_font_ptr(_font_Hack_Regular, _font_Hack_Regular_size);
|
||||
//dfd->set_force_autohinter(true); //just looks better..i think?
|
||||
|
||||
MAKE_DEFAULT_FONT(df, int(EditorSettings::get_singleton()->get("interface/editor/font_size")) * EDSCALE);
|
||||
int default_font_size = int(EditorSettings::get_singleton()->get("interface/editor/font_size")) * EDSCALE;
|
||||
MAKE_DEFAULT_FONT(df, default_font_size);
|
||||
|
||||
p_theme->set_default_theme_font(df);
|
||||
|
||||
MAKE_DEFAULT_FONT(df_title, default_font_size + 2 * EDSCALE);
|
||||
p_theme->set_font("title", "EditorFonts", df_title);
|
||||
|
||||
//Ref<BitmapFont> doc_font = make_font(_bi_font_doc_font_height,_bi_font_doc_font_ascent,0,_bi_font_doc_font_charcount,_bi_font_doc_font_characters,p_theme->get_icon("DocFont","EditorIcons"));
|
||||
//Ref<BitmapFont> doc_title_font = make_font(_bi_font_doc_title_font_height,_bi_font_doc_title_font_ascent,0,_bi_font_doc_title_font_charcount,_bi_font_doc_title_font_characters,p_theme->get_icon("DocTitleFont","EditorIcons"));
|
||||
//Ref<BitmapFont> doc_code_font = make_font(_bi_font_doc_code_font_height,_bi_font_doc_code_font_ascent,0,_bi_font_doc_code_font_charcount,_bi_font_doc_code_font_characters,p_theme->get_icon("DocCodeFont","EditorIcons"));
|
||||
|
||||
MAKE_DEFAULT_FONT(df_title, int(EDITOR_DEF("text_editor/help/help_title_font_size", 16)) * EDSCALE);
|
||||
MAKE_DEFAULT_FONT(df_doc_title, int(EDITOR_DEF("text_editor/help/help_title_font_size", 16)) * EDSCALE);
|
||||
|
||||
MAKE_DEFAULT_FONT(df_doc, int(EDITOR_DEF("text_editor/help/help_font_size", 14)) * EDSCALE);
|
||||
|
||||
p_theme->set_font("doc", "EditorFonts", df_doc);
|
||||
p_theme->set_font("doc_title", "EditorFonts", df_title);
|
||||
p_theme->set_font("doc_title", "EditorFonts", df_doc_title);
|
||||
|
||||
MAKE_DEFAULT_FONT(df_rulers, int(EDITOR_DEF("canvas_item_editor/rulers", 8)) * EDSCALE);
|
||||
p_theme->set_font("rulers", "EditorFonts", df_rulers);
|
||||
|
@ -801,6 +801,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
|
||||
theme->set_constant("close_h_ofs", "WindowDialog", 22 * EDSCALE);
|
||||
theme->set_constant("close_v_ofs", "WindowDialog", 20 * EDSCALE);
|
||||
theme->set_constant("title_height", "WindowDialog", 24 * EDSCALE);
|
||||
theme->set_font("title_font", "WindowDialog", theme->get_font("title", "EditorFonts"));
|
||||
|
||||
// complex window, for now only Editor settings and Project settings
|
||||
Ref<StyleBoxFlat> style_complex_window = style_window->duplicate();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user