Skip to content

Commit 95173ea

Browse files
committed
Fix replaying
1 parent b2b372e commit 95173ea

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

MAVGCL/src/main/java/com/comino/flight/ui/tabs/MAVOpenMapTab.java

+9-6
Original file line numberDiff line numberDiff line change
@@ -511,12 +511,15 @@ public MAVOpenMapTab setup(IMAVController control) {
511511
});
512512

513513
replay.addListener((v, ov, nv) -> {
514-
Platform.runLater(() -> {
515-
if(nv.intValue()<=5) {
516-
updateMap(true);
517-
} else
518-
updateMap(false);
519-
});
514+
if(isDisabled())
515+
return;
516+
517+
int current_x1_pt = dataService.calculateX0IndexByFactor(nv.floatValue());
518+
519+
if(dataService.getModelList().size()>0 && current_x1_pt > 0)
520+
model = dataService.getModelList().get(current_x1_pt);
521+
else
522+
model = dataService.getCurrent();
520523
});
521524

522525
return this;

0 commit comments

Comments
 (0)