mirror of
https://github.com/YACReader/yacreader
synced 2026-04-12 15:49:53 -04:00
15 lines
342 B
C++
15 lines
342 B
C++
#include "scraper_checkbox.h"
|
|
|
|
ScraperCheckBox::ScraperCheckBox(const QString &text, QWidget *parent)
|
|
: QCheckBox(text, parent)
|
|
{
|
|
initTheme(this);
|
|
}
|
|
|
|
void ScraperCheckBox::applyTheme(const Theme &theme)
|
|
{
|
|
auto metadataScraperDialogTheme = theme.metadataScraperDialog;
|
|
|
|
setStyleSheet(metadataScraperDialogTheme.checkBoxQSS);
|
|
}
|