Removed unnecessary newlines from tscn

References #6025. Made small changes to avoid adding newlines for no reason.
This commit is contained in:
Ivan Vodopiviz 2018-03-25 23:09:19 +02:00
parent 201d2d7226
commit e0f6b54b77

View file

@ -1672,7 +1672,7 @@ Error ResourceFormatSaverTextInstance::save(const String &p_path, const RES &p_r
f->store_string(vars);
}
f->store_line("]\n");
f->store_line("]");
for (int j = 0; j < state->get_node_property_count(i); j++) {
@ -1682,11 +1682,8 @@ Error ResourceFormatSaverTextInstance::save(const String &p_path, const RES &p_r
f->store_string(_valprop(String(state->get_node_property_name(i, j))) + " = " + vars + "\n");
}
if (state->get_node_property_count(i)) {
//add space
f->store_line(String());
}
}
for (int i = 0; i < state->get_connection_count(); i++) {
@ -1708,14 +1705,12 @@ Error ResourceFormatSaverTextInstance::save(const String &p_path, const RES &p_r
f->store_string(" binds= " + vars);
}
f->store_line("]\n");
f->store_line("]");
}
f->store_line(String());
Vector<NodePath> editable_instances = state->get_editable_instances();
for (int i = 0; i < editable_instances.size(); i++) {
f->store_line("[editable path=\"" + editable_instances[i].operator String() + "\"]");
f->store_line("\n[editable path=\"" + editable_instances[i].operator String() + "\"]");
}
}