diff options
author | Andrew <forkk@forkk.net> | 2013-11-19 12:53:30 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-11-19 12:53:30 -0600 |
commit | 928e0d0b151a4690a5849c2ec4a44d97338937c5 (patch) | |
tree | 817c32e38fd1492c1f3456be7764e7643a5ef433 /MultiMC.cpp | |
parent | a9a0b65358b3799746fa9c8e1aa879e0b59ef526 (diff) | |
download | MultiMC-928e0d0b151a4690a5849c2ec4a44d97338937c5.tar MultiMC-928e0d0b151a4690a5849c2ec4a44d97338937c5.tar.gz MultiMC-928e0d0b151a4690a5849c2ec4a44d97338937c5.tar.lz MultiMC-928e0d0b151a4690a5849c2ec4a44d97338937c5.tar.xz MultiMC-928e0d0b151a4690a5849c2ec4a44d97338937c5.zip |
Implement saving account list to file
Currently it only saves when accounts are added or removed. We'll have
to fix this, but we need signals for when account objects change first.
Diffstat (limited to 'MultiMC.cpp')
-rw-r--r-- | MultiMC.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MultiMC.cpp b/MultiMC.cpp index ae1401a6..9179f0e0 100644 --- a/MultiMC.cpp +++ b/MultiMC.cpp @@ -150,6 +150,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv) // and accounts m_accounts.reset(new MojangAccountList(this)); QLOG_INFO() << "Loading accounts..."; + m_accounts->setListFilePath("accounts.json", true); m_accounts->loadList(); // init the http meta cache |