diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-23 21:36:01 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-23 21:36:01 -0400 |
| commit | 2fd6cb4a71daa55c93a56ee4387117a10b762c6b (patch) | |
| tree | d81f8c460c36edd915bdd81ec6a21f00cd9e26fc /lib/extensions/install.py | |
| parent | 8f180fb62847072aa5f8a0ae69c2816d397097f5 (diff) | |
| parent | 82d7f494184a031dabc6f5318c13c477ec8052a1 (diff) | |
Merge branch 'lexelby/fix-inx-generation' into lexelby/pes-fixes
Diffstat (limited to 'lib/extensions/install.py')
| -rw-r--r-- | lib/extensions/install.py | 5 |
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)) |
