1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Merge pull request #23518 from volzhs/confirmed_already_connected

Fix error with a specific dock layout
This commit is contained in:
Rémi Verschelde
2018-11-05 13:06:27 +01:00
committed by GitHub
4 changed files with 9 additions and 0 deletions

View File

@@ -210,6 +210,9 @@ void ScriptEditorQuickOpen::_notification(int p_what) {
search_box->set_right_icon(get_icon("Search", "EditorIcons"));
search_box->set_clear_button_enabled(true);
} break;
case NOTIFICATION_EXIT_TREE: {
disconnect("confirmed", this, "_confirmed");
} break;
}
}