From 2739287a3dfa7ac5b2bc655fbc109f650d035d73 Mon Sep 17 00:00:00 2001 From: jppetrakis <> Date: Mon, 27 Feb 2023 09:28:17 -0500 Subject: [PATCH] added a comment --- swing/src/net/sf/openrocket/gui/main/SimulationPanel.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/swing/src/net/sf/openrocket/gui/main/SimulationPanel.java b/swing/src/net/sf/openrocket/gui/main/SimulationPanel.java index 796cd8a8e..a65443bcf 100644 --- a/swing/src/net/sf/openrocket/gui/main/SimulationPanel.java +++ b/swing/src/net/sf/openrocket/gui/main/SimulationPanel.java @@ -744,6 +744,10 @@ public class SimulationPanel extends JPanel { nullCnt++; } } + + // current "unstable" will have a populated sim table EXCEPT for the optimum delay column on a restart + // after a save. That means any row that WAS simulated will have exactly one null column in it... so we'll + // skip row export for the case where there are MORE than one nulls. Either way the user should run sims. if (nullCnt > 1) { // ignore rows that have null column fields 1 through 8... continue; }