Skip to content

Commit

Permalink
Update describealign.py
Browse files Browse the repository at this point in the history
Fixed bug where GUI would not accept directories as file inputs
  • Loading branch information
julbean authored Dec 29, 2024
1 parent 1391289 commit 96b2d4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions describealign.py
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,11 @@ def main_gui():
window.enable()
continue
video_files = values['-VIDEO_FILES-'].split(';')
if len(video_files) == 1:
video_files = video_files[0]
audio_files = values['-AUDIO_FILES-'].split(';')
if len(audio_files) == 1:
audio_files = audio_files[0]
combine_gui(video_files, audio_files, config_path)
if event == 'Settings':
window.disable()
Expand Down

0 comments on commit 96b2d4a

Please sign in to comment.