Skip to content

Commit

Permalink
Update mpv dll loading
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaker committed Feb 18, 2023
1 parent 60cc0e7 commit e538af9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/mergeSelectionUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2416,7 +2416,7 @@ def addAllClipsInTimelineOrder(self,minrid=-1,clearProgress=True):
if self.mergeStyleVar.get().split('-')[0].strip() == 'Grid':
self.clearAllColumns()
for ind,clip in enumerate(sorted(self.selectableVideos.values(),key=lambda x:(x.filename,x.s))):
finalrid = max(finalrid,clip.rid)
finalrid = max(int(finalrid),int(clip.rid))
if clip.rid > minrid:
self.gridColumns[ind%len(self.gridColumns)]['clips'].append(
SequencedVideoEntry(self.gridColumns[ind%len(self.gridColumns)]['column'],self,clip,direction='UP_DOWN'),
Expand Down
1 change: 1 addition & 0 deletions src/modalWindows.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
except AttributeError as e:
print(e)
except Exception as e:
print(e)
logging.error("scriptPath Exception",exc_info=e)

import mpv
Expand Down

0 comments on commit e538af9

Please sign in to comment.