From 4a303a7b3635adfee8f46ac76af4e1b7b4a7029b Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 08 Sep 2019 15:35:13 -0400 Subject: [PATCH] Fix navigation arrows. --- Attribute.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Attribute.java b/Attribute.java index 670dda4..5e115c3 100644 --- a/Attribute.java +++ b/Attribute.java @@ -22,9 +22,9 @@ return csg; } - protected void deepCopySelf(Object3D other) + protected void deepCopyNode(Object3D other) { - super.deepCopySelf(other); + super.deepCopyNode(other); Attribute c = (Attribute) other; c.cleardepth = cleardepth; -- Gitblit v1.6.2