Increase drag limit when selecting themes

This commit is contained in:
Lonami Exo 2017-05-14 17:28:50 +02:00
parent 17f3fe40e6
commit 9106292543

View file

@ -40,7 +40,7 @@ class CustomizeScreen implements Screen {
// As the examples show on the LibGdx wiki
private static final float MIN_DELTA = 1/30f;
private static final float DRAG_LIMIT_SQ = 5*5;
private static final float DRAG_LIMIT_SQ = 20*20;
//endregion