QMod: Add authors property
This commit is contained in:
parent
14964e0203
commit
4edfdc8706
1 changed files with 4 additions and 0 deletions
|
|
@ -40,6 +40,10 @@ class QMod(QObject):
|
|||
def longDescription(self) -> str | None:
|
||||
return self.__mod.long_description
|
||||
|
||||
@Property(list, constant=True)
|
||||
def authors(self) -> list[str] | None:
|
||||
return self.__mod.authors
|
||||
|
||||
mod_enabled = Signal(name="enabled")
|
||||
|
||||
@Property(bool, notify=mod_enabled)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue