public void mouseClicked(final MouseEvent me) {
if (isBusy(identifiedView)) {
return;
}
try {
final Click click = new ClickImpl(downAt, me.getModifiers());
spy.addAction("Mouse clicked " + click.getLocation());
if (click.button3() && identifiedView != null) {
// ignore popup trigger - dealt with by mousePressed or
// mouseReleased (depending on platform)
} else if (viewer.isOverlayAvailable()) {
overlayClick(click);
// } else if (click.button3() && identifiedView != null) {