Tweaked default values

This commit is contained in:
Eric Kotato 2020-02-02 07:51:54 +03:00
parent c2b7944620
commit 48201eb173
2 changed files with 8 additions and 8 deletions

View file

@ -8,10 +8,10 @@
// "semibold_is_bold": false, // "semibold_is_bold": false,
// "monospaced": "Consolas" // "monospaced": "Consolas"
// }, // },
// "sticker_height": 128, // "sticker_height": 170,
// "big_emoji_outline": false, // "big_emoji_outline": true,
// "always_show_scheduled": true, // "always_show_scheduled": false,
// "show_chat_id": true, // "show_chat_id": false,
// "net_speed_boost": null, // "net_speed_boost": null,
// "show_phone_in_drawer": true, // "show_phone_in_drawer": true,
// "scales": [] // "scales": []

View file

@ -216,7 +216,7 @@ bool gUseSystemFont = true;
bool gUseSystemFont = false; bool gUseSystemFont = false;
#endif #endif
rpl::variable<int> gStickerHeight = 128; rpl::variable<int> gStickerHeight = 170;
void SetStickerHeight(int height) { void SetStickerHeight(int height) {
gStickerHeight = height; gStickerHeight = height;
} }
@ -227,7 +227,7 @@ rpl::producer<int> StickerHeightChanges() {
return gStickerHeight.changes(); return gStickerHeight.changes();
} }
rpl::variable<bool> gBigEmojiOutline = false; rpl::variable<bool> gBigEmojiOutline = true;
void SetBigEmojiOutline(bool enabled) { void SetBigEmojiOutline(bool enabled) {
gBigEmojiOutline = enabled; gBigEmojiOutline = enabled;
} }
@ -249,8 +249,8 @@ rpl::producer<bool> AdaptiveBubblesChanges() {
return gAdaptiveBubbles.changes(); return gAdaptiveBubbles.changes();
} }
bool gAlwaysShowScheduled = true; bool gAlwaysShowScheduled = false;
bool gShowChatId = true; bool gShowChatId = false;
int gNetSpeedBoost = 0; int gNetSpeedBoost = 0;
int gNetRequestsCount = 2; int gNetRequestsCount = 2;