From 07c0c67b88160b51e61c5c1d2b9b602daafa44a9 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sat, 17 Aug 2019 04:38:10 -0400
Subject: [PATCH] Fix UV#

---
 GroupLeaf.java |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/GroupLeaf.java b/GroupLeaf.java
index 805acf2..9c7e5f5 100644
--- a/GroupLeaf.java
+++ b/GroupLeaf.java
@@ -14,9 +14,14 @@
     
     GroupLeaf()
     {
-        super("GroupLeaf");
+        this("Loop");
+    }
+
+    GroupLeaf(String name)
+    {
+        super(name);
         
-        addChild(new cGroup("Leaf"));
+        addChild(new cGroup(name + "Leaf"));
     }
 
     Object3D deepCopy()

--
Gitblit v1.6.2