mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
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:
parent
63a09bcad4
commit
0ac78f52fc
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user