[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);
|
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_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
|
super.displayOrder_back = 4; // Order for displaying the component in the 2D back view
|
||||||
insideColorComponentHandler.setEdgesSameAsInside(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -15,7 +15,7 @@ public class InsideColorComponentHandler {
|
|||||||
private final RocketComponent component;
|
private final RocketComponent component;
|
||||||
private Appearance insideAppearance = null;
|
private Appearance insideAppearance = null;
|
||||||
private boolean separateInsideOutside = false; // Flag for separate inside and outside appearance
|
private boolean separateInsideOutside = false; // Flag for separate inside and outside appearance
|
||||||
private boolean edgesSameAsInside = true;
|
private boolean edgesSameAsInside = false; // Flag for setting the edge appearance to the inside (true) or outside (false) appearance
|
||||||
|
|
||||||
public InsideColorComponentHandler(RocketComponent component) {
|
public InsideColorComponentHandler(RocketComponent component) {
|
||||||
this.component = component;
|
this.component = component;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user