From 356e3c690730105e9809e6952f87bf39eb337960 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 11 Feb 2020 16:00:04 +0400 Subject: [PATCH] Enable night mode by default on Mac App Store. --- Telegram/SourceFiles/storage/localstorage.cpp | 26 +++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/storage/localstorage.cpp b/Telegram/SourceFiles/storage/localstorage.cpp index fa8bf75fc..d1182ab45 100644 --- a/Telegram/SourceFiles/storage/localstorage.cpp +++ b/Telegram/SourceFiles/storage/localstorage.cpp @@ -15,6 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "data/data_drafts.h" #include "data/data_user.h" #include "boxes/send_files_box.h" +#include "base/platform/base_platform_info.h" #include "ui/widgets/input_fields.h" #include "ui/emoji_config.h" #include "export/export_settings.h" @@ -2049,7 +2050,10 @@ bool _readOldMtpData(bool remove, ReadSettingsContext &context) { } void _writeUserSettings() { - if (_readingUserSettings) { + if (!_userWorking()) { + LOG(("App Error: attempt to write user settings too early!")); + return; + } else if (_readingUserSettings) { LOG(("App Error: attempt to write settings while reading them!")); return; } @@ -2573,6 +2577,7 @@ void finish() { } void InitialLoadTheme(); +bool ApplyDefaultNightMode(); void readLangPack(); void start() { @@ -2592,7 +2597,10 @@ void start() { _readOldMtpData(false, context); // needed further in _readMtpData applyReadContext(std::move(context)); - return writeSettings(); + if (!ApplyDefaultNightMode()) { + writeSettings(); + } + return; } LOG(("App Info: reading settings...")); @@ -4372,6 +4380,20 @@ void InitialLoadTheme() { } } +bool ApplyDefaultNightMode() { + const auto NightByDefault = Platform::IsMacStoreBuild(); + if (!NightByDefault + || Window::Theme::IsNightMode() + || _themeKeyDay + || _themeKeyNight + || _themeKeyLegacy) { + return false; + } + Window::Theme::ToggleNightMode(); + Window::Theme::KeepApplied(); + return true; +} + Window::Theme::Saved readThemeAfterSwitch() { const auto key = Window::Theme::IsNightMode() ? _themeKeyNight