SL: Fix modification status.

scenarios
Pierre-Antoine Rouby 2024-09-18 13:58:36 +02:00
parent 1ed6274f8b
commit 05ee0e86b1
1 changed files with 2 additions and 0 deletions

View File

@ -319,6 +319,7 @@ class SedimentLayer(SQLSubModel):
@name.setter
def name(self, name):
self._name = name
self.modified()
def names(self):
return list(
@ -335,6 +336,7 @@ class SedimentLayer(SQLSubModel):
@comment.setter
def comment(self, comment):
self._comment = comment
self.modified()
@classmethod
def _db_create(cls, execute, ext=""):