mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-05 08:55:59 +00:00
prepared win version sign, saving compress image checkbox state, not loaded images blur added
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user