[fix] when copying documents, the simulation->FlightConfigurationId is correctly copied

This commit is contained in:
Daniel_M_Williams 2020-08-22 18:04:23 -04:00
parent 1d552f99f9
commit 1eb329b850

View File

@ -497,6 +497,7 @@ public class Simulation implements ChangeSource, Cloneable {
Simulation copy = new Simulation(newRocket);
copy.name = this.name;
copy.configId = this.configId;
copy.options.copyFrom(this.options);
copy.simulatedConfigurationDescription = this.simulatedConfigurationDescription;
for (SimulationExtension c : this.simulationExtensions) {