From d7bc8865056ea0d35df261e719f92e1422af7c6e Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 05 May 2019 09:00:26 -0400 Subject: [PATCH] Fix Windows issues. --- GroupEditor.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/GroupEditor.java b/GroupEditor.java index 6995fb1..cbd2ec6 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"); -- Gitblit v1.6.2