From 57c5b6cd8d12ffdaa3e0b099451e3c031012750a Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Thu, 03 Oct 2019 20:34:32 -0400
Subject: [PATCH] Fix lighttouched

---
 GroupEditor.java |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/GroupEditor.java b/GroupEditor.java
index 949d4b1..008fb31 100644
--- a/GroupEditor.java
+++ b/GroupEditor.java
@@ -1082,7 +1082,7 @@
 //                });
                 
 		oe.toolbarPanel.add(fullScreenButton = GetButton("icons/fullscreen.png", !Globals.NIMBUSLAF)); //, oe.aConstraints);
-                fullScreenButton.setToolTipText("Full-screen window");
+                fullScreenButton.setToolTipText("Full-screen window (ESC to exit)");
 		fullScreenButton.addActionListener(this);
                 
 		oe.toolbarPanel.add(collapseButton = GetButton("icons/collapse.png", !Globals.NIMBUSLAF)); //, oe.aConstraints);
@@ -1411,10 +1411,10 @@
 
                 panel.Return();
                 
-            if (Globals.ADVANCED)
+            //if (Globals.ADVANCED)
             {
                 panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints);
-                crowdCB.setToolTipText("Used for crowds");
+                crowdCB.setToolTipText("Use for crowds");
                                 crowdCB.addItemListener(this);
             }
 
@@ -1444,11 +1444,11 @@
                 panel.Return();
             }
 
+                panel.Return();
+                
                 panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints);
                                 smoothfocusCB.addItemListener(this);
                                 
-                panel.Return();
-                
 //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints);
 //                debugCB.addItemListener(this);
 
@@ -1460,9 +1460,12 @@
                 oeilCB.setToolTipText("Move camera when tracking");
                                 oeilCB.addItemListener(this);
 
+        if (Globals.ADVANCED)
+        {
                 panel.add(shadowCB = new cCheckBox("Shadow", Globals.COMPUTESHADOWWHENLIVE)); //, constraints);
                 shadowCB.setToolTipText("When live compute shadows");
                                 shadowCB.addItemListener(this);
+        }
 
                 panel.Return();
                 panel.add(toggleTextureCB = new cCheckBox("Textures", CameraPane.textureon)); //, constraints);

--
Gitblit v1.6.2