浏览代码

save Backround Images in a different Folder

Kevin Trometer 8 年之前
父节点
当前提交
adcce845dd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/ui/view/BackgroundPopUp.java

+ 1 - 1
src/ui/view/BackgroundPopUp.java

@@ -250,7 +250,7 @@ public class BackgroundPopUp extends JDialog {
 		OutputStream outStream = null;
 		try {
 			File source = new File(path);
-			File dest = new File(System.getProperty("user.home") + "/HolonGUI/Images/");
+			File dest = new File(System.getProperty("user.home") + "/HolonGUI/BackgroundImages/");
 			dest.mkdirs();
 			dest = new File(dest, source.getName());
 			path = "" + dest;