final int left = axis.getHeaderOffset();
;
final int x = click.getLocation().getX();
if (x <= left) {
final Location location = getAbsoluteLocation();
location.translate(click.getLocation());
getWorkspace().objectActionResult(getContent().getAdapter(), new Placement(this));
} else {
super.secondClick(click);
}
}