Apply inspector read_only only when changed

This commit is contained in:
kobewi 2023-02-19 23:07:23 +01:00
parent 9f68d06ec2
commit 860da7bc77

View File

@ -3374,6 +3374,9 @@ void EditorInspector::set_keying(bool p_active) {
}
void EditorInspector::set_read_only(bool p_read_only) {
if (p_read_only == read_only) {
return;
}
read_only = p_read_only;
update_tree();
}