mirror of https://gitlab.com/pamhyr/pamhyr2
SL: Fix modification status.
parent
1ed6274f8b
commit
05ee0e86b1
|
|
@ -319,6 +319,7 @@ class SedimentLayer(SQLSubModel):
|
||||||
@name.setter
|
@name.setter
|
||||||
def name(self, name):
|
def name(self, name):
|
||||||
self._name = name
|
self._name = name
|
||||||
|
self.modified()
|
||||||
|
|
||||||
def names(self):
|
def names(self):
|
||||||
return list(
|
return list(
|
||||||
|
|
@ -335,6 +336,7 @@ class SedimentLayer(SQLSubModel):
|
||||||
@comment.setter
|
@comment.setter
|
||||||
def comment(self, comment):
|
def comment(self, comment):
|
||||||
self._comment = comment
|
self._comment = comment
|
||||||
|
self.modified()
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _db_create(cls, execute, ext=""):
|
def _db_create(cls, execute, ext=""):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue