| 450 | } |
| 451 | |
| 452 | QWidget *OptionsDialog::createAppearanceTab() |
| 453 | { |
| 454 | return new AppearanceTabWidget( |
| 455 | ThemeManager::instance().getAppearanceConfiguration(), |
| 456 | ThemeManager::instance().getRepository(), |
| 457 | []() { return ThemeManager::instance().getCurrentTheme().sourceJson; }, |
| 458 | [](const QJsonObject &json) { ThemeManager::instance().setTheme(makeTheme(json)); }, |
| 459 | this); |
| 460 | } |
nothing calls this directly
no test coverage detected