From dce400da7c65d659129abf9bc6e8f38b360a63d2 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Mon, 26 Aug 2019 20:13:01 -0400 Subject: [PATCH] Fix camera version + VR using spacebar. --- GroupEditor.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GroupEditor.java b/GroupEditor.java index c1f3bea..2e6edb6 100644 --- a/GroupEditor.java +++ b/GroupEditor.java @@ -5374,7 +5374,7 @@ if (tps != null && tps.length > 0 && tps[0].getLastPathComponent() instanceof Camera) // a camera { - if (tps[0].getLastPathComponent() != Globals.theRenderer.LightCamera()) // Crash the camera because of invalid lightspace + if (tps[0].getLastPathComponent() != Globals.theRenderer.LightCamera()) // Crashes the camera because of invalid lightspace { CameraPane.camerachangeframe = 0; // don't refuse it Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent()); @@ -5426,7 +5426,7 @@ void refreshContents(boolean cp) { - if (Globals.ADVANCED) + if (Globals.SHOWINFO) //if (objectPanel.getSelectedIndex() == 2) // objectPanel.indexOfTab("Info")) if (!Globals.MOUSEDRAGGED && group.selection != null) // && !Globals.TIMERRUNNING) { -- Gitblit v1.6.2