blob: b78537c8be5d4bca95e3d6e0a104ba085d9bb547 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
from ..gui.preferences import PreferencesApp
class Preferences(InkstitchExtension):
'''
This saves embroider settings into the metadata of the file
'''
def effect(self):
app = PreferencesApp(self)
app.MainLoop()
|