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;