Merge pull request #17435 from poke1024/output-error-icon

Show error icon at "Output" in case of errors
This commit is contained in:
Rémi Verschelde 2018-03-13 11:22:28 +01:00 committed by GitHub
commit ed1fb87429
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 deletions

View file

@ -5560,7 +5560,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;