Skip to content

Commit

Permalink
Update src/preferences/dialog/dlgprefrecord.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Colombier <[email protected]>
  • Loading branch information
presentformyfriends and acolombier authored Jul 17, 2024
1 parent 827c956 commit 7ae6cb7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/preferences/dialog/dlgprefrecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,7 @@ void DlgPrefRecord::slotSliderQuality() {

// Set 'Enable File Annotation in CUE file' checkbox value depending on 'Create a CUE file' checkbox value
void DlgPrefRecord::updateCueEnabled() {
if (CheckBoxRecordCueFile->isChecked()) {
CheckBoxUseCueFileAnnotation->setEnabled(true);
} else {
CheckBoxUseCueFileAnnotation->setEnabled(false);
CheckBoxUseCueFileAnnotation->setChecked(false);
}
CheckBoxUseCueFileAnnotation->setEnabled(CheckBoxRecordCueFile->isChecked());
}

void DlgPrefRecord::updateTextQuality() {
Expand Down

0 comments on commit 7ae6cb7

Please sign in to comment.