summaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/embroider.py8
-rw-r--r--lib/extensions/params.py7
2 files changed, 11 insertions, 4 deletions
diff --git a/lib/extensions/embroider.py b/lib/extensions/embroider.py
index 1a578031..b9089612 100644
--- a/lib/extensions/embroider.py
+++ b/lib/extensions/embroider.py
@@ -39,10 +39,14 @@ class Embroider(InkstitchExtension):
def get_output_path(self):
if self.options.output_file:
- output_path = os.path.join(os.path.expanduser(os.path.expandvars(self.options.path)), self.options.output_file)
+ # This is helpful for folks that run the embroider extension
+ # manually from the command line (without Inkscape) for
+ # debugging purposes.
+ output_path = os.path.join(os.path.expanduser(os.path.expandvars(self.options.path.decode("UTF-8"))),
+ self.options.output_file.decode("UTF-8"))
else:
csv_filename = '%s.%s' % (self.get_base_file_name(), self.options.output_format)
- output_path = os.path.join(self.options.path, csv_filename)
+ output_path = os.path.join(self.options.path.decode("UTF-8"), csv_filename)
def add_suffix(path, suffix):
if suffix > 0:
diff --git a/lib/extensions/params.py b/lib/extensions/params.py
index 4d04ba23..a3ba7784 100644
--- a/lib/extensions/params.py
+++ b/lib/extensions/params.py
@@ -138,8 +138,11 @@ class ParamsTab(ScrolledPanel):
if self.toggle:
checked = self.enabled()
- if self.toggle_checkbox in self.changed_inputs and not self.toggle.inverse:
- values[self.toggle.name] = checked
+ if self.toggle_checkbox in self.changed_inputs:
+ if self.toggle.inverse:
+ values[self.toggle.name] = not checked
+ else:
+ values[self.toggle.name] = checked
if not checked:
# Ignore params on this tab if the toggle is unchecked,