Browse Source

Fix #151

doc-issue-template
MrS0m30n3 7 years ago
parent
commit
8e60ff3367
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl_gui/mainframe.py

2
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()

Loading…
Cancel
Save