Skip to content

Commit

Permalink
allow x + y with single tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
arch committed Jun 9, 2022
1 parent 6722b38 commit 64b007d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion funscript_editor/ui/settings_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def __set_tracking_metric(self, value):
selection = self.ui.trackingMethodComboBox.currentText()

self.ui.trackingMethodComboBox.clear()
if value in ['x', 'y', 'x inverted', 'y inverted']:
if value in ['x', 'y', 'x inverted', 'y inverted', 'x + y']:
self.ui.trackingMethodComboBox.addItems(self.trackingMethods)
else:
self.ui.trackingMethodComboBox.addItems(list(filter(lambda x: "one" not in x, self.trackingMethods)))
Expand Down

0 comments on commit 64b007d

Please sign in to comment.