[fixes #969] Use edgesSameAsInside default false
This commit is contained in:
parent
6b67aac739
commit
7b1fcf0f60
@ -134,7 +134,6 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
|
||||
this.filletMaterial = Application.getPreferences().getDefaultComponentMaterial(this.getClass(), Material.Type.BULK);
|
||||
super.displayOrder_side = 4; // Order for displaying the component in the 2D side view
|
||||
super.displayOrder_back = 4; // Order for displaying the component in the 2D back view
|
||||
insideColorComponentHandler.setEdgesSameAsInside(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -14,8 +14,8 @@ import java.util.EventObject;
|
||||
public class InsideColorComponentHandler {
|
||||
private final RocketComponent component;
|
||||
private Appearance insideAppearance = null;
|
||||
private boolean separateInsideOutside = false; // Flag for separate inside and outside appearance
|
||||
private boolean edgesSameAsInside = true;
|
||||
private boolean separateInsideOutside = false; // Flag for separate inside and outside appearance
|
||||
private boolean edgesSameAsInside = false; // Flag for setting the edge appearance to the inside (true) or outside (false) appearance
|
||||
|
||||
public InsideColorComponentHandler(RocketComponent component) {
|
||||
this.component = component;
|
||||
|
Loading…
x
Reference in New Issue
Block a user