Fix disabled record button after recording starts (#77)

This commit is contained in:
Chidi Williams 2022-10-15 18:22:00 +01:00 committed by GitHub
commit 96ad5cd24e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
gui.py
View file

@ -566,6 +566,8 @@ class RecordingTranscriberWidget(QWidget):
self.record_button.force_stop()
return
self.record_button.setDisabled(False)
# Clear text box placeholder because the first chunk takes a while to process
self.text_box.setPlaceholderText('')
self.timer_label.start_timer()