| 165 | } |
| 166 | |
| 167 | void PreferencesDialog::updateCodeEditorFont() |
| 168 | { |
| 169 | auto editorFont = ui->fontComboBox->currentFont(); |
| 170 | editorFont.setPointSize(ui->fontSize_spinBox->value() * ui->zoom_spinBox->value() / 100); |
| 171 | _ce->setEditorFont(editorFont); |
| 172 | } |
| 173 | |
| 174 | void PreferencesDialog::on_theme_comboBox_currentIndexChanged(int index) |
| 175 | { |
nothing calls this directly
no test coverage detected