mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fix coupled limits when saving session
This commit is contained in:
parent
150d123be5
commit
61483ce681
@ -2588,6 +2588,13 @@ void Qucs_S_SPAR_Viewer::addLimit(double f_limit1, QString f_limit1_unit, double
|
||||
List_Couple_Value.append(new_limit_CoupleButton);
|
||||
this->LimitsGrid->addWidget(new_limit_CoupleButton, limit_index+1, 2);
|
||||
|
||||
if (coupled){
|
||||
new_limit_CoupleButton->setText("<--->");
|
||||
} else {
|
||||
new_limit_CoupleButton->setText("<-X->");
|
||||
}
|
||||
new_limit_CoupleButton->click();
|
||||
|
||||
|
||||
QString Separator_name = QString("Lmt_Separator%1").arg(n_limits);
|
||||
QFrame * new_Separator = new QFrame();
|
||||
@ -2745,7 +2752,7 @@ bool Qucs_S_SPAR_Viewer::save()
|
||||
xmlWriter.writeTextElement("val_stop", QString::number(value));
|
||||
|
||||
// Couple values
|
||||
Coupled_Limits = List_Couple_Value[i]->isChecked();
|
||||
Coupled_Limits = (List_Couple_Value[i]->text() == "<-X->");
|
||||
xmlWriter.writeTextElement("couple_values", QString::number(Coupled_Limits));
|
||||
|
||||
xmlWriter.writeEndElement(); // Limit
|
||||
|
Loading…
x
Reference in New Issue
Block a user