Don't store values when loading them
This commit is contained in:
parent
24f775089e
commit
4e88fb87b6
8 changed files with 52 additions and 14 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue