From 5b2650be59f7b316ce5a89de1fefb31f8dbd06ca Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Sun, 11 May 2014 18:48:13 +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 9b90bf4..af15c39 100644 --- a/youtube_dl_gui/YoutubeDLGUI.py +++ b/youtube_dl_gui/YoutubeDLGUI.py @@ -1228,8 +1228,8 @@ class OptionsFrame(wx.Frame): notebook.AddPage(self.subtitles_tab, "Subtitles") notebook.AddPage(self.filesystem_tab, "Filesystem") notebook.AddPage(self.shutdown_tab, "Shutdown") - notebook.AddPage(self.connection_tab, "Connection") notebook.AddPage(self.auth_tab, "Authentication") + notebook.AddPage(self.connection_tab, "Connection") notebook.AddPage(self.log_tab, "Log") notebook.AddPage(self.other_tab, "Commands")