* fix: color scheme in copy/export options widget

This commit is contained in:
royqh1979@gmail.com 2021-06-20 23:07:30 +08:00
parent 6fd4371b43
commit c0c21245c7
1 changed files with 2 additions and 2 deletions

View File

@ -50,10 +50,10 @@ void EditorClipboardWidget::doLoad()
pSettings->editor().copyWithFormatAs())) ); pSettings->editor().copyWithFormatAs())) );
ui->chkCopyRTFUseBackground->setChecked(pSettings->editor().copyRTFUseBackground()); ui->chkCopyRTFUseBackground->setChecked(pSettings->editor().copyRTFUseBackground());
ui->chkCopyRTFUseEditorColor->setChecked(pSettings->editor().copyRTFUseEditorColor()); ui->chkCopyRTFUseEditorColor->setChecked(pSettings->editor().copyRTFUseEditorColor());
ui->cbRTFColorScheme->setCurrentText(pSettings->editor().colorScheme()); ui->cbRTFColorScheme->setCurrentText(pSettings->editor().copyRTFColorScheme());
ui->chkCopyHTMLUseBackground->setChecked(pSettings->editor().copyHTMLUseBackground()); ui->chkCopyHTMLUseBackground->setChecked(pSettings->editor().copyHTMLUseBackground());
ui->chkCopyHTMLUseEditorColor->setChecked(pSettings->editor().copyHTMLUseEditorColor()); ui->chkCopyHTMLUseEditorColor->setChecked(pSettings->editor().copyHTMLUseEditorColor());
ui->cbHTMLColorScheme->setCurrentText(pSettings->editor().colorScheme()); ui->cbHTMLColorScheme->setCurrentText(pSettings->editor().copyHTMLColorScheme());
onUseSchemeChanged(); onUseSchemeChanged();
} }