Browse Source

Increase options frames default & min height

doc-issue-template
MrS0m30n3 8 years ago
parent
commit
26954f1df2
2 changed files with 2 additions and 2 deletions
  1. 2
      youtube_dl_gui/optionsframe.py
  2. 2
      youtube_dl_gui/optionsmanager.py

2
youtube_dl_gui/optionsframe.py

@ -48,7 +48,7 @@ class OptionsFrame(wx.Frame):
FRAME_TITLE = _("Options") FRAME_TITLE = _("Options")
FRAMES_MIN_SIZE = (500, 440)
FRAMES_MIN_SIZE = (500, 470)
def __init__(self, parent): def __init__(self, parent):
wx.Frame.__init__(self, parent, title=self.FRAME_TITLE, size=parent.opt_manager.options["opts_win_size"]) wx.Frame.__init__(self, parent, title=self.FRAME_TITLE, size=parent.opt_manager.options["opts_win_size"])

2
youtube_dl_gui/optionsmanager.py

@ -256,7 +256,7 @@ class OptionsManager(object):
'workers_number': 3, 'workers_number': 3,
'locale_name': 'en_US', 'locale_name': 'en_US',
'main_win_size': (710, 490), 'main_win_size': (710, 490),
'opts_win_size': (640, 470),
'opts_win_size': (640, 490),
'selected_video_formats': ['webm', 'mp4'], 'selected_video_formats': ['webm', 'mp4'],
'selected_audio_formats': ['mp3', 'm4a', 'vorbis'], 'selected_audio_formats': ['mp3', 'm4a', 'vorbis'],
'selected_format': '0' 'selected_format': '0'

Loading…
Cancel
Save