From ecff440ceef3ad352aa64cedbb913107ec4863a5 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 25 Jun 2019 19:19:24 -0400 Subject: [PATCH] Fix regression with refresh --- Object3D.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Object3D.java b/Object3D.java index c2b61ec..c00f59b 100644 --- a/Object3D.java +++ b/Object3D.java @@ -5797,7 +5797,7 @@ if (!selectmode && //display.DrawMode() != display.SELECTION && //(touched || (bRep != null && bRep.displaylist <= 0))) - (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched && (bRep != null && bRep.displaylist <= 0))) + (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched || (bRep != null && bRep.displaylist <= 0))) { Globals.lighttouched = true; } // all panes... -- Gitblit v1.6.2