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.plugins_notebook.set_current_page(0)
|
||||||
self.xml.get_object('close_button').grab_focus()
|
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()
|
self.window.show_all()
|
||||||
gtkgui_helpers.possibly_move_window_in_current_desktop(self.window)
|
gtkgui_helpers.possibly_move_window_in_current_desktop(self.window)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue