From cc86bb68a456e48f911f5cf95b458220b5c625ef Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Tue, 25 Oct 2016 20:26:50 +0300 Subject: [PATCH] Change default size of listboxes --- youtube_dl_gui/optionsframe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl_gui/optionsframe.py b/youtube_dl_gui/optionsframe.py index 3364aeb..a60f0e7 100644 --- a/youtube_dl_gui/optionsframe.py +++ b/youtube_dl_gui/optionsframe.py @@ -168,8 +168,8 @@ class TabPanel(wx.Panel): TEXTCTRL_SIZE = (-1, -1) SPINCTRL_SIZE = (70, -1) - CHECKLISTBOX_SIZE = (-1, 100) - LISTBOX_SIZE = (-1, 100) + CHECKLISTBOX_SIZE = (-1, 80) + LISTBOX_SIZE = (-1, 80) def __init__(self, parent, notebook): wx.Panel.__init__(self, notebook)