fixed a scrollbar init error

This commit is contained in:
hneemann 2019-06-24 20:27:29 +02:00
parent 2b4dee3e93
commit 3a26222815

View File

@ -1558,6 +1558,8 @@ public class CircuitComponent extends JComponent implements ChangedListener, Lib
*/
public void setCircuitScrollPanel(CircuitScrollPanel circuitScrollPanel) {
this.circuitScrollPanel = circuitScrollPanel;
if (circuitScrollPanel!=null)
circuitScrollPanel.transformChanged(transform);
}
private final class MouseControllerMoveElement extends MouseController {