Activate PluginInstaller in plugin window init
This commit is contained in:
parent
18df7163d1
commit
a606d0ed7d
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue