We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b372e commit 95173eaCopy full SHA for 95173ea
MAVGCL/src/main/java/com/comino/flight/ui/tabs/MAVOpenMapTab.java
@@ -511,12 +511,15 @@ public MAVOpenMapTab setup(IMAVController control) {
511
});
512
513
replay.addListener((v, ov, nv) -> {
514
- Platform.runLater(() -> {
515
- if(nv.intValue()<=5) {
516
- updateMap(true);
517
- } else
518
- updateMap(false);
519
- });
+ if(isDisabled())
+ return;
+
+ int current_x1_pt = dataService.calculateX0IndexByFactor(nv.floatValue());
+ if(dataService.getModelList().size()>0 && current_x1_pt > 0)
520
+ model = dataService.getModelList().get(current_x1_pt);
521
+ else
522
+ model = dataService.getCurrent();
523
524
525
return this;
0 commit comments