From 8e60ff336701fe8607ca9d3f9c6444bb72e109aa Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Mon, 13 Mar 2017 15:13:15 +0200 Subject: [PATCH] Fix #151 --- youtube_dl_gui/mainframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl_gui/mainframe.py b/youtube_dl_gui/mainframe.py index 085f4a6..19ccede 100644 --- a/youtube_dl_gui/mainframe.py +++ b/youtube_dl_gui/mainframe.py @@ -675,7 +675,7 @@ class MainFrame(wx.Frame): self.download_manager.stop_downloads() def _on_savepath(self, event): - dlg = wx.DirDialog(self, self.CHOOSE_DIRECTORY, self._path_combobox.GetStringSelection(), wx.DD_CHANGE_DIR) + dlg = wx.DirDialog(self, self.CHOOSE_DIRECTORY, self._path_combobox.GetStringSelection()) if dlg.ShowModal() == wx.ID_OK: path = dlg.GetPath()