From 48201eb173bbd0ac60c475c3b3d8af1123e0aec9 Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Sun, 2 Feb 2020 07:51:54 +0300 Subject: [PATCH] Tweaked default values --- Telegram/Resources/default_kotato-settings-custom.json | 8 ++++---- Telegram/SourceFiles/settings.cpp | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Telegram/Resources/default_kotato-settings-custom.json b/Telegram/Resources/default_kotato-settings-custom.json index 8171f960e..f1a1365c4 100644 --- a/Telegram/Resources/default_kotato-settings-custom.json +++ b/Telegram/Resources/default_kotato-settings-custom.json @@ -8,10 +8,10 @@ // "semibold_is_bold": false, // "monospaced": "Consolas" // }, - // "sticker_height": 128, - // "big_emoji_outline": false, - // "always_show_scheduled": true, - // "show_chat_id": true, + // "sticker_height": 170, + // "big_emoji_outline": true, + // "always_show_scheduled": false, + // "show_chat_id": false, // "net_speed_boost": null, // "show_phone_in_drawer": true, // "scales": [] diff --git a/Telegram/SourceFiles/settings.cpp b/Telegram/SourceFiles/settings.cpp index a5370dfca..01f7f1bb0 100644 --- a/Telegram/SourceFiles/settings.cpp +++ b/Telegram/SourceFiles/settings.cpp @@ -216,7 +216,7 @@ bool gUseSystemFont = true; bool gUseSystemFont = false; #endif -rpl::variable gStickerHeight = 128; +rpl::variable gStickerHeight = 170; void SetStickerHeight(int height) { gStickerHeight = height; } @@ -227,7 +227,7 @@ rpl::producer StickerHeightChanges() { return gStickerHeight.changes(); } -rpl::variable gBigEmojiOutline = false; +rpl::variable gBigEmojiOutline = true; void SetBigEmojiOutline(bool enabled) { gBigEmojiOutline = enabled; } @@ -249,8 +249,8 @@ rpl::producer AdaptiveBubblesChanges() { return gAdaptiveBubbles.changes(); } -bool gAlwaysShowScheduled = true; -bool gShowChatId = true; +bool gAlwaysShowScheduled = false; +bool gShowChatId = false; int gNetSpeedBoost = 0; int gNetRequestsCount = 2;