Skip to content

Commit

Permalink
- remove incorrect default path
Browse files Browse the repository at this point in the history
  • Loading branch information
derreisende77 committed Sep 19, 2024
1 parent 0396dbd commit ee2d07a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mediathek/gui/tabs/tab_film/GuiFilme.java
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ private void showMenu(MouseEvent evt) {
var miCreateInfoFile = new JMenuItem("Infodatei erzeugen...");
miCreateInfoFile.addActionListener(l -> {
System.out.println("INFO FILE");
var file = FileDialogs.chooseSaveFileLocation(MediathekGui.ui(), "Infodatei speichern", "/Users/christianfranzke/Desktop/infofile.txt");
var file = FileDialogs.chooseSaveFileLocation(MediathekGui.ui(), "Infodatei speichern", "");
if (file != null) {
MVInfoFile infoFile = new MVInfoFile();
try {
Expand Down

0 comments on commit ee2d07a

Please sign in to comment.