Should we preview fonts in the editor window?
| 1332 | |
| 1333 | // Should we preview fonts in the editor window? |
| 1334 | bool Global::previewFontsInDialog() { |
| 1335 | settings->beginGroup("Appearance"); |
| 1336 | bool value = settings->value("previewFonts", false).toBool(); |
| 1337 | settings->endGroup(); |
| 1338 | return value; |
| 1339 | } |
| 1340 | |
| 1341 | |
| 1342 | // Set the previewing of fonts in the editor window. |
no test coverage detected