Fixed Qucs equation export

This commit is contained in:
Vadim Kuznetsov 2025-02-05 19:36:47 +03:00
parent d047c7e9e1
commit 3440d36941

View File

@ -742,7 +742,8 @@ void ComponentDialog::writeEquation()
}
if (eqnExportCheck)
component->Props.append(new Property("Export", eqnExportCheck->checkState() == Qt::Checked ? "yes" : "no", false));
component->Props.append(new Property("Export", eqnExportCheck->checkState() == Qt::Checked ? "yes" : "no",
false, QObject::tr("put result into dataset")+" [yes, no]"));
}
// -------------------------------------------------------------------------