Skip to content

Commit

Permalink
FF: remove debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Oct 22, 2024
1 parent 3debc04 commit 8c041c4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions psychopy/app/_psychopyApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,6 @@ def onInit(self, showSplash=True, testMode=False, safeMode=False, startView=None
splash.SetText(_translate(" Creating frames..."))

# get starting windows
print (repr(startView), repr(self.prefs.appData['lastFrame']), self.prefs.app['defaultView'])
sys.stdout.flush()
if startView in (None, []):
# if no window specified, use default from prefs
if self.prefs.app['defaultView'] == 'all':
Expand All @@ -539,7 +537,7 @@ def onInit(self, showSplash=True, testMode=False, safeMode=False, startView=None
startView = self.prefs.appData['lastFrame'].split("-")
elif self.prefs.app['defaultView'] in ["builder", "coder", "runner"]:
startView = self.prefs.app['defaultView']

if not startView: # if we still don't have a startView then load Builder
startView = ["builder"]

Expand Down

0 comments on commit 8c041c4

Please sign in to comment.