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,
// "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": []

View file

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