Skip to content

Commit 64b007d

Browse files
author
arch
committed
allow x + y with single tracker
1 parent 6722b38 commit 64b007d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funscript_editor/ui/settings_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def __set_tracking_metric(self, value):
175175
selection = self.ui.trackingMethodComboBox.currentText()
176176

177177
self.ui.trackingMethodComboBox.clear()
178-
if value in ['x', 'y', 'x inverted', 'y inverted']:
178+
if value in ['x', 'y', 'x inverted', 'y inverted', 'x + y']:
179179
self.ui.trackingMethodComboBox.addItems(self.trackingMethods)
180180
else:
181181
self.ui.trackingMethodComboBox.addItems(list(filter(lambda x: "one" not in x, self.trackingMethods)))

0 commit comments

Comments
 (0)