Update script signals in real-time when script changes. Fixes #8980

This commit is contained in:
Juan Linietsky
2017-08-18 16:43:23 -03:00
parent 2ed87f33cf
commit b20952ebff
7 changed files with 31 additions and 4 deletions

View File

@ -63,6 +63,11 @@ void NodeDock::_notification(int p_what) {
NodeDock *NodeDock::singleton = NULL;
void NodeDock::update_lists() {
connections->update_tree();
}
void NodeDock::set_node(Node *p_node) {
connections->set_node(p_node);