inkstitch/lib/extensions/preferences.py

18 wiersze
429 B
Python
Czysty Zwykły widok Historia

2021-03-12 04:17:19 +00:00
# Authors: see git history
#
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
from .base import InkstitchExtension
2023-08-16 02:59:04 +00:00
from ..gui.preferences import PreferencesApp
class Preferences(InkstitchExtension):
'''
This saves embroider settings into the metadata of the file
'''
def effect(self):
2023-08-16 02:59:04 +00:00
app = PreferencesApp(self)
app.MainLoop()