From 7bd72274780ccaeae8bbae6e761341079df21ecb Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Fri, 11 Jul 2025 22:12:01 +0200 Subject: Do not redefine underscore (#3865) * do not redefine underscore * Disallow any redefinitions going forward --------- Co-authored-by: CapellanCitizen <> --- lib/gui/preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/gui') diff --git a/lib/gui/preferences.py b/lib/gui/preferences.py index b95bb7c8..1eaac5f5 100644 --- a/lib/gui/preferences.py +++ b/lib/gui/preferences.py @@ -205,7 +205,7 @@ class PreferencesFrame(wx.Frame): metadata = self.extension.get_inkstitch_metadata() metadata['min_stitch_len_mm'] = self.minimum_stitch_length.GetValue() metadata['collapse_len_mm'] = self.minimum_jump_stitch_length.GetValue() - _, metadata['rotate_on_export'] = self.rotate_on_export_choices[self.rotate_on_export.GetCurrentSelection()] + metadata['rotate_on_export'] = self.rotate_on_export_choices[self.rotate_on_export.GetCurrentSelection()][1] global_settings['default_min_stitch_len_mm'] = self.default_minimum_stitch_length.GetValue() global_settings['default_collapse_len_mm'] = self.default_minimum_jump_stitch_length.GetValue() -- cgit v1.2.3