|
@@ -472,10 +472,10 @@ public class SaveController {
|
|
|
String ret = entryName;
|
|
|
String partition = null;
|
|
|
|
|
|
- if(os.contains("windows")) {
|
|
|
- partition = entryName.substring(0, entryName.indexOf(":")+1);
|
|
|
- ret = entryName.replace(partition, "");
|
|
|
+ if(os.contains("windows")) {
|
|
|
+ partition = ret.substring(0, ret.indexOf(":")+1);
|
|
|
ret = ret.replace(System.getProperty("user.home") + "\\HolonGUI\\", "");
|
|
|
+ ret = ret.replace(partition, "");
|
|
|
}
|
|
|
if(os.contains("mac")) {
|
|
|
ret = ret.replace(System.getProperty("user.home") + "/HolonGUI/", "");
|