2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 00:55:12 +00:00

prepared win version sign, saving compress image checkbox state, not loaded images blur added

This commit is contained in:
John Preston
2014-09-20 14:35:46 -07:00
parent 67e74e7aed
commit da0df57563
8 changed files with 116 additions and 46 deletions

View File

@@ -1565,6 +1565,7 @@ namespace App {
stream << quint32(dbiNotifyView) << qint32(cNotifyView());
stream << quint32(dbiAskDownloadPath) << qint32(cAskDownloadPath());
stream << quint32(dbiDownloadPath) << (cAskDownloadPath() ? QString() : cDownloadPath());
stream << quint32(dbiCompressPastedImage) << qint32(cCompressPastedImage());
stream << quint32(dbiEmojiTab) << qint32(cEmojiTab());
RecentEmojiPreload v;
@@ -1747,6 +1748,12 @@ namespace App {
cSetDownloadPath(v);
} break;
case dbiCompressPastedImage: {
qint32 v;
stream >> v;
cSetCompressPastedImage(v == 1);
} break;
case dbiEmojiTab: {
qint32 v;
stream >> v;