From e0433cfd5702016132796381aede28690a98905d Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Tue, 15 Nov 2016 17:55:09 +0200 Subject: [PATCH] Change creation seq in order for Tab key to work properly --- youtube_dl_gui/optionsframe.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/youtube_dl_gui/optionsframe.py b/youtube_dl_gui/optionsframe.py index 1efd179..f01f321 100644 --- a/youtube_dl_gui/optionsframe.py +++ b/youtube_dl_gui/optionsframe.py @@ -552,12 +552,12 @@ class DownloadsTab(TabPanel): self.filesize_box = self.crt_staticbox("Filesize") - self.filesize_min_label = self.crt_statictext("Min") - self.filesize_min_spinctrl = self.crt_spinctrl((0, 1024)) - self.filesize_min_sizeunit_combobox = self.crt_combobox(list(self.FILESIZES.values())) self.filesize_max_label = self.crt_statictext("Max") self.filesize_max_spinctrl = self.crt_spinctrl((0, 1024)) self.filesize_max_sizeunit_combobox = self.crt_combobox(list(self.FILESIZES.values())) + self.filesize_min_label = self.crt_statictext("Min") + self.filesize_min_spinctrl = self.crt_spinctrl((0, 1024)) + self.filesize_min_sizeunit_combobox = self.crt_combobox(list(self.FILESIZES.values())) self._set_layout() @@ -824,8 +824,8 @@ class ExtraTab(TabPanel): self.extra_opts_label = self.crt_statictext("Extra options") - self.ignore_errors_checkbox = self.crt_checkbox("Ignore errors") self.youtube_dl_debug_checkbox = self.crt_checkbox("Debug youtube-dl") + self.ignore_errors_checkbox = self.crt_checkbox("Ignore errors") self.ignore_config_checkbox = self.crt_checkbox("Ignore youtube-dl config") self.native_hls_checkbox = self.crt_checkbox("Prefer native HLS")