Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/net/sf/openrocket/ORBrake/ORBrakeConfigurator.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected JComponent getConfigurationComponent(ORBrake extension, Simulation sim
panel.add(sliderTau, "w 75lp, wrap");


panel.add(new JLabel("Drag Coeficient:"));
panel.add(new JLabel("Drag Coefficient:"));
DoubleModel Cd = new DoubleModel(extension, "Cd", UnitGroup.UNITS_COEFFICIENT, 0);

JSpinner spinCd = new JSpinner(Cd.getSpinnerModel());
Expand Down Expand Up @@ -127,4 +127,4 @@ protected JComponent getConfigurationComponent(ORBrake extension, Simulation sim
return panel;
}

}
}