From 631719825b865aaf9fa1cb124d9fc5bd9dd78bd4 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sun, 05 May 2019 10:27:02 -0400
Subject: [PATCH] Disabled timer for instant selection.
---
CameraPane.java | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/CameraPane.java b/CameraPane.java
index 8658cf7..ea29a28 100644
--- a/CameraPane.java
+++ b/CameraPane.java
@@ -13656,6 +13656,10 @@
// wasliveok = true;
// waslive = false;
+ // May 2019 Forget it:
+ if (true)
+ return;
+
// source == timer
if (mouseDown)
{
@@ -14359,7 +14363,7 @@
boolean control = ((modifiers & CTRL) != 0); // june 2013: for point selection
boolean command = ((modifiers & COMMAND) != 0); // june 2013: for multiple selection
- if (control || command || IsFrozen())
+// No delay if (control || command || IsFrozen())
timeout = true;
// ?? May 2019 else
// timer.setDelay((modifiers & 128) != 0?0:350);
--
Gitblit v1.6.2