From fdd16de0d47e5fa81539cefe1e916cb9f3ed210b Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Fri, 4 Oct 2019 17:30:46 +0300 Subject: [PATCH] Making previous settings default for now --- 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 039c87f72..28d1fc853 100644 --- a/Telegram/Resources/default_kotato-settings-custom.json +++ b/Telegram/Resources/default_kotato-settings-custom.json @@ -8,8 +8,8 @@ // "semibold_is_bold": false, // "monospaced": "Consolas" // }, - // "sticker_height": 256, - // "big_emoji_outline": true, - // "always_show_scheduled": false, - // "show_chat_id": false + // "sticker_height": 128, + // "big_emoji_outline": false, + // "always_show_scheduled": true, + // "show_chat_id": true } diff --git a/Telegram/SourceFiles/settings.cpp b/Telegram/SourceFiles/settings.cpp index e40b48e9e..24b89affe 100644 --- a/Telegram/SourceFiles/settings.cpp +++ b/Telegram/SourceFiles/settings.cpp @@ -210,7 +210,7 @@ rpl::producer<> UpdatedRecentEmoji() { QString gMainFont, gSemiboldFont, gMonospaceFont; bool gSemiboldFontIsBold = false; -int gStickerHeight = 256; -bool gBigEmojiOutline = true; -bool gAlwaysShowScheduled = false; -bool gShowChatId = false; +int gStickerHeight = 128; +bool gBigEmojiOutline = false; +bool gAlwaysShowScheduled = true; +bool gShowChatId = true;