From f924d3e00db476c06f55f3d5aaef307e17575340 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Mon, 13 May 2019 07:29:08 -0400
Subject: [PATCH] Transform children

---
 Cone.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cone.java b/Cone.java
index f8856e7..979cce1 100644
--- a/Cone.java
+++ b/Cone.java
@@ -314,13 +314,13 @@
         return true;
     }
 
-    void doEditDrag(ClickInfo info)
+    void doEditDrag(ClickInfo info, boolean opposite)
     {
         if (hitSomething == 0)
             return;
         if (hitSomething == 1)
         {
-            super.doEditDrag(info);
+            super.doEditDrag(info, opposite);
             return;
         }
         double deltaR = info.x - startX;

--
Gitblit v1.6.2