From 26b24f5b623e709a88e91e9bce0864f9d5e8f084 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Mon, 24 Jun 2019 23:09:17 -0400
Subject: [PATCH] Fix full screen layout

---
 CameraPane.java |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/CameraPane.java b/CameraPane.java
index c1f5c9b..6966eee 100644
--- a/CameraPane.java
+++ b/CameraPane.java
@@ -10481,6 +10481,7 @@
                     ANTIALIAS = 0;
                     //System.out.println("RESTART");
                     AAtimer.restart();
+                    Globals.TIMERRUNNING = true;
                 }
             }
         }
@@ -13840,6 +13841,7 @@
         else
         if (evt.getSource() == AAtimer)
         {
+                    Globals.TIMERRUNNING = false;
             if (mouseDown)
             {
             //new Exception().printStackTrace();
@@ -13914,6 +13916,7 @@
             return;
         
         AAtimer.restart(); // 
+        Globals.TIMERRUNNING = true;
 
 //        waslive = LIVE;
 //        LIVE = false;
@@ -14377,7 +14380,7 @@
                 info.camera = renderCamera;
                 info.x = x;
                 info.y = y;
-                object.manipWindow.copy
+                object.GetWindow().copy
                         .doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
             } else
             {
@@ -15378,7 +15381,7 @@
         }
          */
 
-        object.editWindow.EditSelection();
+        object.editWindow.EditSelection(false);
     }
 
     void SelectParent()

--
Gitblit v1.6.2