fixed player_0_1s bug

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

View file

@ -364,4 +364,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
}
}