Skip to content

Commit

Permalink
fix a really stupid bug with non-pruned stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McFadden committed Nov 18, 2024
1 parent 259f9e5 commit e674250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LS_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def stackFocusStack(self, folder):
if(os.path.getsize(folder + "/" + stackFolder + "/" + file) >= median):
inputPath = inputPath + ' "' + folder + "/" + stackFolder + "/" + file + '"'
else:
inputPath = '"' + folder + "/" + stackFolder + "/*jpg" + '"'
inputPath = '"' + folder + "/" + stackFolder + "/" + '"' + "*jpg"


commandLine = self.config.configValues["FocusStackLaunchPath"] \
Expand Down

0 comments on commit e674250

Please sign in to comment.