Browse Source

Make path & videoformat boxes read-only

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

4
youtube_dl_gui/mainframe.py

@ -233,8 +233,8 @@ class MainFrame(wx.Frame):
self._folder_icon = self._create_static_bitmap("folder_32px.png")
self._path_combobox = ExtComboBox(self._panel, 5)
self._videoformat_combobox = ExtComboBox(self._panel, choices=self._video_formats.values())
self._path_combobox = ExtComboBox(self._panel, 5, style=wx.CB_READONLY)
self._videoformat_combobox = ExtComboBox(self._panel, choices=self._video_formats.values(), style=wx.CB_READONLY)
self._download_text = self._create_statictext(self.DOWNLOAD_LIST_LABEL)
self._status_list = ListCtrl(self.STATUSLIST_COLUMNS,

Loading…
Cancel
Save