Fix saving of main menu accounts state.

This commit is contained in:
John Preston 2020-06-25 13:01:17 +04:00
parent 65050bf9dd
commit 8ad1e8aed9

View file

@ -89,8 +89,7 @@ QByteArray Settings::serialize() const {
}
stream
<< qint32(_autoDownloadDictionaries.current() ? 1 : 0)
<< qint32(Window::Theme::Background()->tileDay() ? 1 : 0)
<< qint32(Window::Theme::Background()->tileNight() ? 1 : 0);
<< qint32(_mainMenuAccountsShown.current() ? 1 : 0);
}
return result;
}