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
if you run a script and then, in Runner, move to a different item, then you can't ever get back to the Red Stop button (it gets disabled and never re-enabled when switching files). Fix so the red cross always kills the running process (only allowing 1 running script?) or track multiple processes (one per script?)
there seem to be some issues as well with the wrong script sometimes running or sometimes no script being selected (if file is in the list and you press run from Coder it sometimes fails to select the right script)
The text was updated successfully, but these errors were encountered:
peircej
added a commit
to peircej/psychopy
that referenced
this issue
Sep 18, 2020
fixespsychopyGH-3142
Also some reports of the wrong script running?
We now;
- track if the script process is running and use that to determine
whether RunBtn should be enabled:
just runBtn.Enable() during onSelectedItem if not running
- store a dict of entries for the ListCtrl rather than searching for
the items (ListrCtrl FindItem is poor)
- don't hard-code the column numbers - what if we change them later?
fixesGH-3142
Also some reports of the wrong script running?
We now;
- track if the script process is running and use that to determine
whether RunBtn should be enabled:
just runBtn.Enable() during onSelectedItem if not running
- store a dict of entries for the ListCtrl rather than searching for
the items (ListrCtrl FindItem is poor)
- don't hard-code the column numbers - what if we change them later?
Several buglets:
The text was updated successfully, but these errors were encountered: