From 4c8b2e9e91190a867b8177fbc7beac42c752b8ae Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Thu, 1 May 2014 19:34:14 +0300 Subject: [PATCH] Rearragne 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 28d3eeb..57a5c80 100644 --- a/youtube_dl_gui/YoutubeDLGUI.py +++ b/youtube_dl_gui/YoutubeDLGUI.py @@ -1199,8 +1199,8 @@ class OptionsFrame(wx.Frame): notebook.AddPage(self.videoselTab, "Playlist") notebook.AddPage(self.subtitlesTab, "Subtitles") notebook.AddPage(self.filesysTab, "Filesystem") - notebook.AddPage(self.connectionTab, "Connection") notebook.AddPage(self.shutdownTab, "Shutdown") + notebook.AddPage(self.connectionTab, "Connection") notebook.AddPage(self.authTab, "Authentication") notebook.AddPage(self.logTab, "Log") notebook.AddPage(self.otherTab, "Commands")