diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-03-09 18:04:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-03-09 18:04:49 (GMT) |
commit | dc8a2b19dbb32bfe49b1ff6640cc609238b392ca (patch) | |
tree | 2103c99baeb3b792bc82fc3db28bd16ecf72b70e /plugins/python | |
parent | f8f804cf7ff9a62404b843cf303c762101572784 (diff) |
Stored and loaded panels attributes using the global configuration.
Diffstat (limited to 'plugins/python')
-rw-r--r-- | plugins/python/welcome/panel.py | 3 | ||||
-rw-r--r-- | plugins/python/welcome/plugin.py | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/python/welcome/panel.py b/plugins/python/welcome/panel.py index 7b46c57..a577c8c 100644 --- a/plugins/python/welcome/panel.py +++ b/plugins/python/welcome/panel.py @@ -19,7 +19,8 @@ class WelcomePanel(PanelItem): content = self._build_panel_content() - super(WelcomePanel, self).__init__(PanelItem.PIP_SINGLETON, 'Welcome', 'First commands', content, 'N') + super(WelcomePanel, self).__init__(PanelItem.PIP_SINGLETON, 'Welcome', 'First commands', \ + content, False, 'N') def _build_panel_content(self): diff --git a/plugins/python/welcome/plugin.py b/plugins/python/welcome/plugin.py index 8a9f9a2..a26c93b 100644 --- a/plugins/python/welcome/plugin.py +++ b/plugins/python/welcome/plugin.py @@ -30,7 +30,7 @@ class WelcomePlugin(PluginModule): self._panel = WelcomePanel() - self._panel.dock() - self._panel.register() + #self._panel.dock() + #self._panel.register() return True |