Don't live regenerate the theme when writing in the the name field

This commit is contained in:
luisangelsm
2026-03-24 19:05:40 +01:00
parent 2367a1919e
commit f3efa4ecc8

View File

@ -108,6 +108,8 @@ ThemeEditorDialog::ThemeEditorDialog(const QJsonObject &params, QWidget *parent)
auto meta = this->params["meta"].toObject();
meta["displayName"] = text;
this->params["meta"] = meta;
});
connect(nameEdit, &QLineEdit::editingFinished, this, [this]() {
emit themeJsonChanged(this->params);
});
connect(variantCombo, &QComboBox::currentIndexChanged, this, [this](int index) {