From 9dd76c7214eb7c155cf60ffa197a1df5985f27dc Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Wed, 14 May 2014 12:48:10 +0300 Subject: [PATCH] Rearrange options tabs --- youtube_dl_gui/YoutubeDLGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl_gui/YoutubeDLGUI.py b/youtube_dl_gui/YoutubeDLGUI.py index b7ef0d6..86b5488 100644 --- a/youtube_dl_gui/YoutubeDLGUI.py +++ b/youtube_dl_gui/YoutubeDLGUI.py @@ -1270,8 +1270,8 @@ class OptionsFrame(wx.Frame): notebook.AddPage(self.general_tab, "General") notebook.AddPage(self.video_tab, "Video") notebook.AddPage(self.audio_tab, "Audio") - notebook.AddPage(self.output_tab, "Output") notebook.AddPage(self.playlist_tab, "Playlist") + notebook.AddPage(self.output_tab, "Output") notebook.AddPage(self.subtitles_tab, "Subtitles") notebook.AddPage(self.filesystem_tab, "Filesystem") notebook.AddPage(self.shutdown_tab, "Shutdown")