Преглед на файлове

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;