Should fix problem with issue2421

This commit is contained in:
Denis 2014-10-02 15:48:48 +03:00
parent 52a45474b7
commit 90ce9bf22f

View file

@ -187,7 +187,12 @@ public class WaypointDialogHelper implements OsmAndLocationListener {
protected void onPostExecute(Void result) {
if (height > 0 && OVERLAP_LAYOUT) {
shiftButtons(height);
mapActivity.runOnUiThread(new Runnable() {
@Override
public void run() {
shiftButtons(height);
}
});
}
}
}.execute(reachedView);