diff --git a/src/Client/AndroidUI.h b/src/Client/AndroidUI.h index 43e221b..192c998 100644 --- a/src/Client/AndroidUI.h +++ b/src/Client/AndroidUI.h @@ -376,13 +376,13 @@ class AndroidBall : public CCLayer } virtual void ccTouchMoved(cocos2d::CCTouch* touch, cocos2d::CCEvent* event) { - if (doingThing) + if (doingThing && (btn->numberOfRunningActions() == 0)) { if (btn->getPosition().getDistance(touch->getLocation()) > 7.5f) { dragging = true; - log::info("dragging"); + //log::info("dragging"); } if (dragging) diff --git a/src/Client/ClientSetup.h b/src/Client/ClientSetup.h index 1fbe347..acf1e78 100644 --- a/src/Client/ClientSetup.h +++ b/src/Client/ClientSetup.h @@ -139,7 +139,7 @@ class ClientUtils Window* replay = new Window(); replay->name = "Config"; replay->id = "options-window"; - replay->windowPos = ImVec2(50 + (50 + (Client::instance->tileSize.x)) * 7, 50); + replay->windowPos = ImVec2(50 + (50 + (Client::instance->tileSize.x)) * 4, 50); #ifndef GEODE_IS_ANDROID