Skip to content

Commit

Permalink
adding max length to filename
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Nov 20, 2024
1 parent 0515b04 commit b6b7a4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

* Fixing #610 Do not try to divide by zero if HDR metadata has bad values (thanks to Noelle Leigh)
* Fixing #616 replace correct cmd line option for IDC level (thanks to pkleinejaeger)
* Fixing too long of log file names could crash (thanks to ProFile)
* Fixing too long of log file names could crash, limiting filename to 220 characters (thanks to ProFile)
* Removing code signing as cert has expired

## Version 5.8.1
Expand Down
1 change: 1 addition & 0 deletions fastflix/widgets/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ def __init__(self, parent, app: FastFlixApp):
self.output_video_path_widget.setFixedHeight(20)
self.output_video_path_widget.setFont(QtGui.QFont(self.app.font().family(), 9))
self.output_video_path_widget.setStyleSheet("padding: 0 0 -1px 5px")
self.output_video_path_widget.setMaxLength(220)

# self.output_video_path_widget.textChanged.connect(lambda x: self.page_update(build_thumbnail=False))
self.video_path_widget.setEnabled(False)
Expand Down

0 comments on commit b6b7a4a

Please sign in to comment.