We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a29cf commit 8253f06Copy full SHA for 8253f06
psychopy/visual/basevisual.py
@@ -170,6 +170,10 @@ def autoDraw(self, value):
170
# remove from autodraw lists
171
toDrawDepths.pop(toDraw.index(self)) # remove from depths
172
toDraw.remove(self) # remove from draw list
173
+ # Remove from editable list (if present)
174
+ for c in self.win._editableChildren:
175
+ if c() == self:
176
+ self.win._editableChildren.remove(c)
177
self.status = STOPPED
178
179
def setAutoDraw(self, value, log=None):
0 commit comments