Change time limit used to make events show on the same line from .01s to
.05s.
This commit is contained in:
parent
c2ac8204b1
commit
a06acb7b43
@ -273,7 +273,7 @@ public class SimulationPlot {
|
||||
FlightEvent.Type type = event.getType();
|
||||
|
||||
if (type != FlightEvent.Type.ALTITUDE && config.isEventActive(type)) {
|
||||
if (Math.abs(t - prevTime) <= 0.01) {
|
||||
if (Math.abs(t - prevTime) <= 0.05) {
|
||||
|
||||
if (!typeSet.contains(type)) {
|
||||
text = text + ", " + type.toString();
|
||||
|
Loading…
x
Reference in New Issue
Block a user