summaryrefslogtreecommitdiff
path: root/lib/extensions/install.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2018-08-24 15:34:08 -0400
committerGitHub <noreply@github.com>2018-08-24 15:34:08 -0400
commitb3bb975401fe4971170239eea9b928ee13161398 (patch)
treed50e49a5808101bc5270a6eb43ed5fe69f197e67 /lib/extensions/install.py
parent27c8bcc370594d93e7d826708e4761af0da503d7 (diff)
parent2fd6cb4a71daa55c93a56ee4387117a10b762c6b (diff)
Merge pull request #292 from inkstitch/lexelby/pes-fixes
pes fixes
Diffstat (limited to 'lib/extensions/install.py')
-rw-r--r--lib/extensions/install.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/extensions/install.py b/lib/extensions/install.py
index 42a92113..e405cbac 100644
--- a/lib/extensions/install.py
+++ b/lib/extensions/install.py
@@ -14,6 +14,7 @@ import wx
import inkex
from ..utils import guess_inkscape_config_path, get_bundled_dir
+from ..i18n import _
class InstallerFrame(wx.Frame):
@@ -98,6 +99,10 @@ class InstallerFrame(wx.Frame):
shutil.copy(palette_file, dest)
class Install(inkex.Effect):
+ @classmethod
+ def name(cls):
+ return "install"
+
def effect(self):
app = wx.App()
installer_frame = InstallerFrame(None, title=_("Ink/Stitch Add-ons Installer"), size=(550, 250))