diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-04 13:47:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 13:47:04 +0200 |
commit | b177051521631f77092dc2513873afbd7015d4bb (patch) | |
tree | 2efa07c3a33288a66cab58f4584efc0599369f49 /editor/plugins | |
parent | b6f8726c664552956310d1fb6f36be349b8c4ca6 (diff) | |
parent | 79e83b7c929728545d66cfb6962f7a59babc7c4b (diff) |
Merge pull request #32528 from hbina/hbina_fix_font_override
Fixed warnings text using custom font and color setting.
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index b1e8ce20d6..b7d36ce75a 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -5135,6 +5135,8 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) { warning_child_of_container = memnew(Label); warning_child_of_container->hide(); warning_child_of_container->set_text(TTR("Warning: Children of a container get their position and size determined only by their parent.")); + warning_child_of_container->add_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_color("warning_color", "Editor")); + warning_child_of_container->add_font_override("font", EditorNode::get_singleton()->get_gui_base()->get_font("main", "EditorFonts")); add_control_to_info_overlay(warning_child_of_container); h_scroll = memnew(HScrollBar); |