Normand Briere
2019-05-05 631719825b865aaf9fa1cb124d9fc5bd9dd78bd4
GroupEditor.java
....@@ -940,7 +940,9 @@
940940 // objEditor.DropFile((java.io.File[]) object, true);
941941 // return;
942942 // }
943
- if (string.charAt(0) == '/')
943
+
944
+ // File path for Mac and Windows
945
+ if (string.charAt(0) == '/' || string.charAt(1) == ':')
944946 {
945947 // file(s)
946948 String[] names = string.split("\n");
....@@ -967,7 +969,7 @@
967969
968970 flashIt = false;
969971 CameraPane pane = (CameraPane) target;
970
- pane.clickStart(objEditor.location.x, objEditor.location.y, 0);
972
+ pane.clickStart(objEditor.location.x, objEditor.location.y, 0, 0);
971973 pane.clickEnd(objEditor.location.x, objEditor.location.y, 0, true);
972974
973975 if (group.selection.size() == 1)