Skip to content

Commit

Permalink
opensesamerun: don't set fullscreen as property of experiment (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
smathot committed Feb 24, 2016
1 parent 10ca919 commit eb6741b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions debian/changelog
Expand Up @@ -9,6 +9,7 @@ opensesame (3.0.6a2-ubuntu1) wily; urgency=medium
- Catch non osexception Exceptions during script validation
- Add console property to sketchpad base_element
- Avoid setting config values to QPyNullVariant (#397)
- Don't set fullscreen as property of experiment in opensesamerun (#392)
* Improvements
- Add `experiment_file` experimental variable, which contains the file name of the experiment (#387)
- Catch warnings when creating a new item and provide an informative message
Expand Down
4 changes: 2 additions & 2 deletions opensesamerun
Expand Up @@ -94,7 +94,7 @@ if __name__ == u"__main__":
exp = libopensesame.experiment.experiment(u"Experiment",
experiment, experiment_path=experiment_path)
exp.set_subject(options.subject)
exp.fullscreen = options.fullscreen
exp.var.fullscreen = options.fullscreen
exp.logfile = logfile
exp.run()
exp.end()
Expand All @@ -111,7 +111,7 @@ if __name__ == u"__main__":
sys.exit()
# Set some options
exp.set_subject(options.subject)
exp.fullscreen = options.fullscreen
exp.var.fullscreen = options.fullscreen
exp.logfile = logfile
# Initialize random number generator
import random
Expand Down

0 comments on commit eb6741b

Please sign in to comment.