add support for building Android version
This commit is contained in:
@@ -68,7 +68,7 @@ bool Dialog::onMousePress(int x, int y) {
|
||||
for (unsigned int z = 0; z < items.size(); z++) {
|
||||
items[z]->onMousePress(x, y);
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Dialog::onMouseRelease(int x, int y) {
|
||||
@@ -93,7 +93,7 @@ bool Dialog::onFingerDown(int x, int y, int finger_id) {
|
||||
for (unsigned int z = 0; z < items.size(); z++) {
|
||||
items[z]->onFingerDown(x, y, finger_id);
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Dialog::onFingerUp(int x, int y, int finger_id) {
|
||||
|
||||
Reference in New Issue
Block a user