Skip to content

Commit

Permalink
Fix for not remembering word level timings in folder watch preferences (
Browse files Browse the repository at this point in the history
  • Loading branch information
raivisdejus committed Jun 9, 2024
1 parent c19e7ac commit 2f0b826
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions buzz/widgets/transcriber/file_transcription_form_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ def on_word_level_timings_changed(self, value: int):
value == Qt.CheckState.Checked.value
)

self.transcription_options_changed.emit(
(self.transcription_options, self.file_transcription_options)
)

def get_on_checkbox_state_changed_callback(self, output_format: OutputFormat):
def on_checkbox_state_changed(state: int):
if state == Qt.CheckState.Checked.value:
Expand Down

0 comments on commit 2f0b826

Please sign in to comment.