Initialize bools in the headers in editor

This commit is contained in:
Aaron Franke
2022-02-15 08:56:58 -06:00
parent 398c124b9a
commit d1feea8ccb
2 changed files with 1 additions and 3 deletions

View File

@@ -4725,8 +4725,6 @@ VisualScriptEditor::VisualScriptEditor() {
undo_redo = EditorNode::get_singleton()->get_undo_redo();
updating_members = false;
set_process_input(true);
default_value_edit = memnew(CustomPropertyEditor);

View File

@@ -148,7 +148,7 @@ class VisualScriptEditor : public ScriptEditorBase {
void _update_graph_connections();
void _update_graph(int p_only_id = -1);
bool updating_members;
bool updating_members = false;
void _update_members();
String _sanitized_variant_text(const StringName &property_name);