Geometry: Point: Fix modified status for SL setter and name setter.

scenarios
Pierre-Antoine 2025-09-04 09:26:50 +02:00
parent 1e2a123693
commit 017f26c03d
1 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,8 @@ class Point(SQLSubModel):
else:
self._sl = sl
self.modified()
@property
def name(self):
return self._name
@ -54,7 +56,7 @@ class Point(SQLSubModel):
@name.setter
def name(self, name):
self._name = name
self._status.modified()
self.modified()
def point_is_named(self):
"""