Should fix problem with issue2421
This commit is contained in:
parent
52a45474b7
commit
90ce9bf22f
1 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue