add MapView.post(Runnable)

This commit is contained in:
Hannes Janetzek
2013-07-26 03:12:56 +02:00
parent 7ca6ae05b4
commit 23a26eb18c
3 changed files with 13 additions and 1 deletions

View File

@@ -64,6 +64,12 @@ public class GdxMap implements ApplicationListener {
else
Gdx.graphics.requestRendering();
}
@Override
public boolean postRunnable(Runnable runnable) {
Gdx.app.postRunnable(runnable);
return true;
}
};
mMapRenderer = new GLRenderer(mMapView);