diff options
| author | Tannin <devnull@localhost> | 2013-12-04 19:54:28 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-12-04 19:54:28 +0100 |
| commit | 0e90b9d233eb3ae8276f6f8bfc4612c117544404 (patch) | |
| tree | 66b2359e96f4aed63abddf6474fab57a6f729dc8 /src/modinfo.cpp | |
| parent | 0e19c847229fdabf9f178a51eb0e5c1a7ae91a70 (diff) | |
- bugfix: changing nexus id directly via mod list did not cause the change to be saved
Diffstat (limited to 'src/modinfo.cpp')
| -rw-r--r-- | src/modinfo.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/modinfo.cpp b/src/modinfo.cpp index f436eba8..6569f897 100644 --- a/src/modinfo.cpp +++ b/src/modinfo.cpp @@ -541,6 +541,13 @@ bool ModInfoRegular::setName(const QString &name) void ModInfoRegular::setNotes(const QString ¬es) { m_Notes = notes; + m_MetaInfoChanged = true; +} + +void ModInfoRegular::setNexusID(int modID) +{ + m_NexusID = modID; + m_MetaInfoChanged = true; } void ModInfoRegular::setVersion(const VersionInfo &version) |
