UserOverlayBase.java fixed animation thread break condition to check of isAborted rather than !isAborted
|
Before Width: | Height: | Size: 898 B |
|
Before Width: | Height: | Size: 760 B |
|
Before Width: | Height: | Size: 751 B |
|
Before Width: | Height: | Size: 466 B |
|
Before Width: | Height: | Size: 776 B |
|
Before Width: | Height: | Size: 527 B |
|
Before Width: | Height: | Size: 417 B |
|
Before Width: | Height: | Size: 473 B |
|
Before Width: | Height: | Size: 276 B |
|
Before Width: | Height: | Size: 410 B |
|
Before Width: | Height: | Size: 664 B |
|
Before Width: | Height: | Size: 567 B |
|
Before Width: | Height: | Size: 608 B |
|
Before Width: | Height: | Size: 359 B |
|
Before Width: | Height: | Size: 523 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 949 B |
|
Before Width: | Height: | Size: 943 B |
|
Before Width: | Height: | Size: 579 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 9.1 KiB |
|
Before Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 825 B |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
@@ -59,7 +59,7 @@ public abstract class UserOverlayBase extends Overlay implements GeoPointLocatio
|
|||||||
boolean isCountingUp = true;
|
boolean isCountingUp = true;
|
||||||
while (true) {
|
while (true) {
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
if (! isAborted) {
|
if (isAborted) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -301,7 +301,7 @@ public abstract class UserOverlayBase extends Overlay implements GeoPointLocatio
|
|||||||
/**
|
/**
|
||||||
* Enables the Acquiring GPS dialog if the location has not been acquired
|
* Enables the Acquiring GPS dialog if the location has not been acquired
|
||||||
*
|
*
|
||||||
* TODO fix funtion
|
* TODO fix funtion currently generates bad window token
|
||||||
* @author ricky barrette
|
* @author ricky barrette
|
||||||
*/
|
*/
|
||||||
public void enableGPSDialog(){
|
public void enableGPSDialog(){
|
||||||
|
|||||||