| 223 | } |
| 224 | |
| 225 | void StyleEditDialog::updateStyle() |
| 226 | { |
| 227 | mBtnDefaultLight->setEnabled(mStyleOutgoing != defaultStyleLight); |
| 228 | mBtnDefaultDark->setEnabled(mStyleOutgoing != defaultStyleDark); |
| 229 | // set Editor Styling |
| 230 | mSampleEditor->setStyle(mStyleOutgoing); |
| 231 | } |
| 232 | |
| 233 | CodeEditorStyle StyleEditDialog::getStyle() const |
| 234 | { |
nothing calls this directly
no test coverage detected