From 4e7946d03e317c3eee803d5342168c72eec60166 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 3 Oct 2019 12:34:58 +0300 Subject: [PATCH] Allow scales below 100. Fixes #6632. --- Telegram/SourceFiles/ui/style/style_core_scale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/ui/style/style_core_scale.h b/Telegram/SourceFiles/ui/style/style_core_scale.h index ca7120a5c..c5396ff6b 100644 --- a/Telegram/SourceFiles/ui/style/style_core_scale.h +++ b/Telegram/SourceFiles/ui/style/style_core_scale.h @@ -15,7 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace style { inline constexpr auto kScaleAuto = 0; -inline constexpr auto kScaleMin = 100; +inline constexpr auto kScaleMin = 75; inline constexpr auto kScaleDefault = 100; inline constexpr auto kScaleMax = 300;