From 481df91095a82824d2a98d4db860b3caadbda70a Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 05 May 2019 12:58:12 -0400 Subject: [PATCH] Slider tooltips. --- GroupEditor.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/GroupEditor.java b/GroupEditor.java index 6995fb1..a0702c4 100644 --- a/GroupEditor.java +++ b/GroupEditor.java @@ -940,7 +940,9 @@ // objEditor.DropFile((java.io.File[]) object, true); // return; // } - if (string.charAt(0) == '/') + + // File path for Mac and Windows + if (string.charAt(0) == '/' || string.charAt(1) == ':') { // file(s) String[] names = string.split("\n"); @@ -967,7 +969,7 @@ flashIt = false; CameraPane pane = (CameraPane) target; - pane.clickStart(objEditor.location.x, objEditor.location.y, 0); + pane.clickStart(objEditor.location.x, objEditor.location.y, 0, 0); pane.clickEnd(objEditor.location.x, objEditor.location.y, 0, true); if (group.selection.size() == 1) -- Gitblit v1.6.2