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.
|
|
|
|
|
2021-03-04 17:40:53 +00:00
|
|
|
from .base import InkstitchExtension
|
2023-08-16 02:59:04 +00:00
|
|
|
from ..gui.preferences import PreferencesApp
|
2021-03-04 17:40:53 +00:00
|
|
|
|
|
|
|
|
2022-07-29 22:17:50 +00:00
|
|
|
class Preferences(InkstitchExtension):
|
2021-03-04 17:40:53 +00:00
|
|
|
'''
|
|
|
|
This saves embroider settings into the metadata of the file
|
|
|
|
'''
|
2022-07-29 22:17:50 +00:00
|
|
|
|
2021-03-04 17:40:53 +00:00
|
|
|
def effect(self):
|
2023-08-16 02:59:04 +00:00
|
|
|
app = PreferencesApp(self)
|
|
|
|
app.MainLoop()
|