Remove separators when deleting limits

It was found that when a limit was removed, the separator related to it stayed there. This commit fixes this.
This commit is contained in:
andresmmera 2024-10-19 08:30:48 +02:00
parent 63a09bcad4
commit 0ac78f52fc

View File

@ -2254,6 +2254,12 @@ void Qucs_S_SPAR_Viewer::removeLimit(int index_to_delete)
List_Couple_Value.removeAt(index_to_delete); List_Couple_Value.removeAt(index_to_delete);
delete ButtonCoupledToRemove; delete ButtonCoupledToRemove;
// Delete the separator
QFrame* SeparatorToRemove = List_Separators.at(index_to_delete);
LimitsGrid->removeWidget(SeparatorToRemove);
List_Separators.removeAt(index_to_delete);
delete SeparatorToRemove;
updateTraces(); updateTraces();
} }