Rename YACReaderLibrary json theme sections to be more user friendly

This commit is contained in:
luisangelsm
2026-03-02 22:31:56 +01:00
parent 547e48cc04
commit e0930d7a68
28 changed files with 372 additions and 387 deletions

View File

@ -40,9 +40,9 @@ void SeriesQuestion::setYes(bool y)
void SeriesQuestion::applyTheme(const Theme &theme)
{
auto comicVineTheme = theme.comicVine;
auto metadataScraperDialogTheme = theme.metadataScraperDialog;
questionLabel->setStyleSheet(comicVineTheme.defaultLabelQSS);
yes->setStyleSheet(comicVineTheme.radioButtonQSS);
no->setStyleSheet(comicVineTheme.radioButtonQSS);
questionLabel->setStyleSheet(metadataScraperDialogTheme.defaultLabelQSS);
yes->setStyleSheet(metadataScraperDialogTheme.radioButtonQSS);
no->setStyleSheet(metadataScraperDialogTheme.radioButtonQSS);
}