Merge pull request #86 from jacobfilik/waterfall_bug_fix

Fix waterfall draw in Windows10 by reversing add of fill and outline
This commit is contained in:
jzy3d 2017-09-16 16:56:25 +02:00 committed by GitHub
commit bbe14e13af
1 changed files with 1 additions and 1 deletions

View File

@ -35,8 +35,8 @@ public class WaterfallComposite extends Shape {
outline.setWireframeColor(Color.BLACK);
outline.setFaceDisplayed(false);
add(outline);
add(fill);
add(outline);
}
@Override