Change time limit used to make events show on the same line from .01s to

.05s.
This commit is contained in:
kruland2607 2012-11-08 21:02:45 -06:00
parent c2ac8204b1
commit a06acb7b43

View File

@ -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();