Fix: system.json theme not correctly hidden in the initial dialog
This commit is contained in:
parent
6715d197fe
commit
2b581531db
|
@ -56,7 +56,7 @@
|
||||||
</font>
|
</font>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Copyright(C) 2021-2022 瞿华(royqh1979@gmail.com)</string>
|
<string>Copyright(C) 2021-2024 瞿华(royqh1979@gmail.com)</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -23,9 +23,9 @@ ChooseThemeDialog::ChooseThemeDialog(QWidget *parent) :
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
#ifdef ENABLE_LUA_ADDON
|
#ifdef ENABLE_LUA_ADDON
|
||||||
ui->rbAuto->setChecked(true);
|
ui->rbAuto->setVisible(true);
|
||||||
#else
|
#else
|
||||||
ui->rbAuto->setChecked(false);
|
ui->rbAuto->setVisible(false);
|
||||||
#endif
|
#endif
|
||||||
ui->rbDark->setChecked(true);
|
ui->rbDark->setChecked(true);
|
||||||
ui->rbCpp->setChecked(true);
|
ui->rbCpp->setChecked(true);
|
||||||
|
|
Loading…
Reference in New Issue