Selaa lähdekoodia

save Backround Images in a different Folder

Kevin Trometer 8 vuotta sitten
vanhempi
commit
adcce845dd
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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;