mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 14:13:10 +00:00
Tweak the "Changes may be lost!" text color to match the icon's color
This commit is contained in:
parent
d617df5f34
commit
a0c35b4d0d
@ -337,6 +337,7 @@ void InspectorDock::_notification(int p_what) {
|
||||
history_menu->set_icon(get_icon("History", "EditorIcons"));
|
||||
object_menu->set_icon(get_icon("Tools", "EditorIcons"));
|
||||
warning->set_icon(get_icon("NodeWarning", "EditorIcons"));
|
||||
warning->add_color_override("font_color", get_color("warning_color", "Editor"));
|
||||
} break;
|
||||
}
|
||||
}
|
||||
@ -584,6 +585,7 @@ InspectorDock::InspectorDock(EditorNode *p_editor, EditorData &p_editor_data) {
|
||||
add_child(warning);
|
||||
warning->set_text(TTR("Changes may be lost!"));
|
||||
warning->set_icon(get_icon("NodeWarning", "EditorIcons"));
|
||||
warning->add_color_override("font_color", get_color("warning_color", "Editor"));
|
||||
warning->set_clip_text(true);
|
||||
warning->hide();
|
||||
warning->connect("pressed", this, "_warning_pressed");
|
||||
|
Loading…
Reference in New Issue
Block a user