1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-26 15:46:23 +00:00

Show error icon at "Output" in case of errors

(cherry picked from commit 5120690013)
This commit is contained in:
Bernhard Liebl
2018-03-11 14:20:32 +01:00
committed by Hein-Pieter van Braam
parent dfe6d42a01
commit 4ce6a8f5f9
3 changed files with 10 additions and 4 deletions

View File

@@ -5577,7 +5577,8 @@ EditorNode::EditorNode() {
bottom_panel_vb->add_child(bottom_panel_hb);
log = memnew(EditorLog);
add_bottom_panel_item(TTR("Output"), log);
ToolButton *output_button = add_bottom_panel_item(TTR("Output"), log);
log->set_tool_button(output_button);
old_split_ofs = 0;