@Override
public void mouseDragged(MouseEvent e) {
LiveWindow.this.vidParent.setFollowAgent(false);
if (isHand && handStartingPoint != null) {
Vector2D midVector = new Vector2D(handStartingPoint);
midVector.sub(new Vector2D(e.getPoint()));
vidParent.adjustZoomBoxMiddle(midVector);
handStartingPoint = new Vector2D(e.getPoint());
} else {
try {
LiveWindow.this.zoomRechteck.setRight(e.getX() - LiveWindow.this.getInsets().left);