Don't store values when loading them

This commit is contained in:
kobewi
2024-03-07 14:36:20 +01:00
parent 24f775089e
commit 4e88fb87b6
8 changed files with 52 additions and 14 deletions

View File

@ -129,7 +129,8 @@ void EditorPropertyVectorN::_notification(int p_what) {
case NOTIFICATION_READY: {
if (linked->is_visible()) {
const String key = vformat("%s:%s", get_edited_object()->get_class(), get_edited_property());
linked->set_pressed(EditorSettings::get_singleton()->get_project_metadata("linked_properties", key, true));
linked->set_pressed_no_signal(EditorSettings::get_singleton()->get_project_metadata("linked_properties", key, true));
_update_ratio();
}
} break;