You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2020. It is now read-only.
If you call setValue on a slot, it then calls setDirty(slice(None)), which fails, if the slot rtype is a list, because slice object is not iterable. Maybe we need special handling for this case? Like some "everything" property for all types of slots?
The text was updated successfully, but these errors were encountered:
The SubRegion rtype defaults to "everything" if no arguments are given to its constructor (other than the slot). Should this be a rule for all rtypes? By the way, we need to keep Issue #57 in mind when solving this.
To eliminate your crash, you could just change line 896 of graph.py to say: self.setDirty(), but that may not be what you want, since the List rtype doesn't default to "everything". It defaults to "nothing", so calling setValue won't mark your slot as dirty.
If you call setValue on a slot, it then calls setDirty(slice(None)), which fails, if the slot rtype is a list, because slice object is not iterable. Maybe we need special handling for this case? Like some "everything" property for all types of slots?
The text was updated successfully, but these errors were encountered: