(mods []string)
| 599 | } |
| 600 | |
| 601 | func (a *App) SaveNewModsForLater(mods []string) { |
| 602 | a.mu.Lock() |
| 603 | a.ProjectData.SavedNewMods = mods |
| 604 | a.ProjectModified = true |
| 605 | a.mu.Unlock() |
| 606 | |
| 607 | a.CreateSnapshot() |
| 608 | a.emitLog(fmt.Sprintf("Saved %d new mods for later", len(mods)), LogSuccess) |
| 609 | } |
| 610 | |
| 611 | // --- Dependencies --- |
| 612 |
nothing calls this directly
no test coverage detected