GDScript: Fix test for read-only state of constants

This commit is contained in:
Dmitrii Maganov
2023-01-22 11:07:48 +02:00
parent d1e5903c67
commit abe6d67232
14 changed files with 43 additions and 52 deletions
+2 -8
View File
@@ -333,15 +333,9 @@ Dictionary Dictionary::duplicate(bool p_deep) const {
return recursive_duplicate(p_deep, 0);
}
void Dictionary::set_read_only(bool p_enable) {
if (p_enable == bool(_p->read_only != nullptr)) {
return;
}
if (p_enable) {
void Dictionary::make_read_only() {
if (_p->read_only == nullptr) {
_p->read_only = memnew(Variant);
} else {
memdelete(_p->read_only);
_p->read_only = nullptr;
}
}
bool Dictionary::is_read_only() const {