Normand Briere
2019-06-26 89b25e7cc97f6fe221dfd41c4d463500f8a31bc1
Object3D.java
....@@ -5797,7 +5797,7 @@
57975797
57985798 if (!selectmode && //display.DrawMode() != display.SELECTION &&
57995799 //(touched || (bRep != null && bRep.displaylist <= 0)))
5800
- (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched && (bRep != null && bRep.displaylist <= 0)))
5800
+ (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched || (bRep != null && bRep.displaylist <= 0)))
58015801 {
58025802 Globals.lighttouched = true;
58035803 } // all panes...
....@@ -7994,6 +7994,8 @@
79947994 transient ObjEditor editWindow;
79957995 transient ObjEditor manipWindow;
79967996
7997
+ transient boolean pinned;
7998
+
79977999 transient ObjectUI objectUI;
79988000 public static int povDepth = 0;
79998001 private static cVector tbMin = new cVector();