1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

-Fixes a bunch of stdout errors, closes #2763 closes #2731

This commit is contained in:
Juan Linietsky
2016-01-23 19:51:51 -03:00
parent a2992d5955
commit 6c27df8df6
9 changed files with 23 additions and 13 deletions

View File

@@ -96,7 +96,11 @@ void ConnectDialog::_notification(int p_what) {
RID ci = get_canvas_item();
get_stylebox("panel","PopupMenu")->draw(ci,Rect2(Point2(),get_size()));
}
}
if (p_what==NOTIFICATION_ENTER_TREE) {
bind_editor->edit(cdbinds);
}
}
void ConnectDialog::_tree_node_selected() {
@@ -456,7 +460,6 @@ ConnectDialog::ConnectDialog() {
set_as_toplevel(true);
cdbinds = memnew( ConnectDialogBinds );
bind_editor->edit(cdbinds);
error = memnew( ConfirmationDialog );
add_child(error);