mirror of https://gitlab.com/pamhyr/pamhyr2
Geometry: Point: Fix modified status for SL setter and name setter.
parent
1e2a123693
commit
017f26c03d
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue