summaryrefslogtreecommitdiff
path: root/plugins/snippets/snippets/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/snippets/snippets/__init__.py')
-rw-r--r--plugins/snippets/snippets/__init__.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/snippets/snippets/__init__.py b/plugins/snippets/snippets/__init__.py
index 9e7f717d..e5588018 100644
--- a/plugins/snippets/snippets/__init__.py
+++ b/plugins/snippets/snippets/__init__.py
@@ -23,10 +23,10 @@ from .Library import Library
from .Manager import Manager
from .comment import toggle_lines
-class SnippetsPlugin(GObject.Object, Peas.Activatable):
+class SnippetsPlugin(GObject.Object, Pluma.WindowActivatable):
__gtype_name__ = "SnippetsPlugin"
- object = GObject.Property(type=GObject.Object)
+ window = GObject.Property(type=Pluma.Window)
def __init__(self):
GObject.Object.__init__(self)
@@ -59,8 +59,7 @@ class SnippetsPlugin(GObject.Object, Peas.Activatable):
self._helper = WindowHelper(self)
- window = self.object
- self._helper.run(window)
+ self._helper.run(self.window)
def do_deactivate(self):
library = Library()