Bugfix for bugfix of Token::varId - Change Token::type also if varId is set to 0
This commit is contained in:
parent
662b0d2dbe
commit
8301b5d4d6
|
@ -303,6 +303,8 @@ public:
|
||||||
_varId = id;
|
_varId = id;
|
||||||
if (id != 0)
|
if (id != 0)
|
||||||
_type = eVariable;
|
_type = eVariable;
|
||||||
|
else
|
||||||
|
update_property_info();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue