Activate PluginInstaller in plugin window init

This commit is contained in:
Philipp Hörist 2017-02-13 11:35:17 +01:00
parent 18df7163d1
commit a606d0ed7d
1 changed files with 5 additions and 0 deletions

View File

@ -114,6 +114,11 @@ class PluginsWindow(object):
self.plugins_notebook.set_current_page(0)
self.xml.get_object('close_button').grab_focus()
for plugin in gajim.plugin_manager.active_plugins:
if type(plugin).__name__ == 'PluginInstaller':
plugin.on_activate(self)
break
self.window.show_all()
gtkgui_helpers.possibly_move_window_in_current_desktop(self.window)