From dbb6af02866a20e6852ad0db594f11c2e8739286 Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Fri, 24 Feb 2012 18:30:37 +0000 Subject: [PATCH] Disable 'Install Addons' tab in Help->Plugin Manager because it is superseded by the Preferences check for updates features. svn: r18968 --- src/gui/plug/_windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/plug/_windows.py b/src/gui/plug/_windows.py index 03b0757fc..c8d9b5d9a 100644 --- a/src/gui/plug/_windows.py +++ b/src/gui/plug/_windows.py @@ -264,8 +264,8 @@ class PluginStatus(ManagedWindow.ManagedWindow): hbutbox.add(self.__refresh_btn) self.__refresh_btn.connect('clicked', self.__refresh_addon_list) install_page.pack_start(hbutbox, expand=False, padding=5) - notebook.append_page(install_page, - tab_label=gtk.Label(_('Install Addons'))) + # notebook.append_page(install_page, + # tab_label=gtk.Label(_('Install Addons'))) #add the notebook to the window self.window.vbox.add(notebook)