no need to interpolated at toggle time

This commit is contained in:
Q
2025-08-20 22:13:36 +03:00
parent a0f17d034d
commit 9aa1be3a07
2 changed files with 6 additions and 2 deletions

View File

@@ -579,7 +579,11 @@ class Marker:
new_index = 0
self.points[self.point_index][self.nr]["visible"] = POINT_VISIBILITY[new_index]
self.interpolate_points()
try:
self.points_interpolated[self.point_index][self.nr]["visible"] = POINT_VISIBILITY[new_index]
except Exception as e:
print(e)
pass
def track_point(self):