Skip to content

Commit

Permalink
Fix gui save defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Bodine committed Sep 10, 2024
1 parent 1f10be4 commit bb05de8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/funcs_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,14 @@ def saveDefaultParams(values):
projDir = os.path.join(values['proj'], values['projName'])
except:
projDir = os.path.join(values['proj'], values['prefix'])

try:
inDir = values['inDir']
except:
inDir = ''

params = {
'inDir':values['inDir'],
'inDir':inDir,
'humFile':values['humFile'],
'aoi':values['aoi'],
'projDir':projDir,
Expand Down

0 comments on commit bb05de8

Please sign in to comment.