merged master into next

This commit is contained in:
Matei Adriel 2019-07-28 12:33:50 +03:00
commit 9f1463f410
4 changed files with 24 additions and 4 deletions
src/modules/simulationRenderer/classes

View file

@ -365,4 +365,12 @@ export class SimulationRenderer {
this.selectedGates.permanent.clear()
this.selectedGates.temporary.clear()
}
/**
* Clears the selected pins of the renderer
*/
public clearPinSelection() {
this.selectedPins.end = null
this.selectedPins.start = null
}
}