This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addListener(new InputListener() { | |
@Override | |
public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) { | |
if (event.getTarget() == DefaultDialog.this && x < 0 || y < 0 || x > getWidth() || y > getHeight()) { | |
hide(); | |
return true; | |
} | |
return false; | |
} |
NewerOlder