diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index c0c4f7ec3..e19db40ed 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -12,8 +12,8 @@ Redistribution and use in source and binary forms, with or without modification,
-->
@@ -22,7 +22,6 @@ Redistribution and use in source and binary forms, with or without modification,
-
diff --git a/app/src/main/assets/help.html b/app/src/main/assets/help.html
index 496c52d06..4640d922e 100644
--- a/app/src/main/assets/help.html
+++ b/app/src/main/assets/help.html
@@ -60,6 +60,11 @@ Notice
CAUTION - Before flight the user must always ensure that Avare is updated to and thoroughly tested on the latest version, and ensure that all Avare databases and charts are kept current. If Avare and its databases and charts are not of the exact same version, the GPS position displayed may be inaccurate, because the FAA sometimes changes the format of their materials. Avare does not automatically fetch any databases and charts when they are expired, so it is the user's sole responsibility to update any expired charts and databases. To do so, ensure that your device has an internet connection and then just press the Map, Menu, Preferences, Download, and Update buttons in Avare.
Avare Releases
+10.2.7
+
+
10.2.6
- Improved help file
diff --git a/app/src/main/java/com/ds/avare/views/PlatesTagView.java b/app/src/main/java/com/ds/avare/views/PlatesTagView.java
index 4f0eff7f8..18c4ce8b0 100644
--- a/app/src/main/java/com/ds/avare/views/PlatesTagView.java
+++ b/app/src/main/java/com/ds/avare/views/PlatesTagView.java
@@ -32,8 +32,6 @@ public class PlatesTagView extends PanZoomView {
private Paint mPaint;
private BitmapHolder mBitmap;
- private int mX;
- private int mY;
private float mAirportX;
private float mAirportY;
private String mAirportName;
@@ -49,7 +47,6 @@ private void setup(Context context) {
mPaint.setTypeface(Helper.getTypeFace(context));
mPaint.setAntiAlias(true);
setBackgroundColor(Color.BLACK);
- mX = mY = 0;
mAirportName = "";
mAirportX = mAirportY = -1;
}
@@ -212,14 +209,14 @@ public void onSizeChanged(int w, int h, int oldw, int oldh) {
* Current X with scale adjusted
*/
public int getx() {
- return mX;
+ return Math.round((-mPan.getMoveX() + mBitmap.getWidth() / 2));
}
/**
* Current Y with scale adjusted
*/
public int gety() {
- return mY;
+ return Math.round((-mPan.getMoveY() + mBitmap.getHeight() / 2));
}
/**