* java.awt.event.MouseEvent
*/
public State mouseDoubleClick(Window window, MouseEvent event) {
// Recupero el canvas
CircuitCanvas canvas = window.getCanvas();
// El click
if (window.getCircuit() != null) {
// Donde ocurre
int x = canvas.getTransformedX(event.getX());
int y = canvas.getTransformedY(event.getY());
Circuit circuit = window.getCircuit();
// Si es el boton izquierdo
if (SwingUtilities.isLeftMouseButton(event)) {
if (circuit.peekV(x, y) || circuit.peekH(x, y))