From 7a856a77e4d36a077cb1a5a1c50831463a6692a0 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sun, 23 Jun 2024 10:58:16 +0200 Subject: wxpythonify about extension (#3007) --- lib/extensions/about.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/extensions/about.py (limited to 'lib/extensions/about.py') diff --git a/lib/extensions/about.py b/lib/extensions/about.py new file mode 100644 index 00000000..f4ab233c --- /dev/null +++ b/lib/extensions/about.py @@ -0,0 +1,14 @@ +# Authors: see git history +# +# Copyright (c) 2023 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + +from ..gui.about import AboutInkstitchApp +from .base import InkstitchExtension + + +class About(InkstitchExtension): + + def effect(self): + app = AboutInkstitchApp() + app.MainLoop() -- cgit v1.2.3