mirror of https://github.com/procxx/kepka.git
Enable night mode by default on Mac App Store.
This commit is contained in:
parent
3c5f8d08ad
commit
356e3c6907
|
@ -15,6 +15,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "data/data_drafts.h"
|
#include "data/data_drafts.h"
|
||||||
#include "data/data_user.h"
|
#include "data/data_user.h"
|
||||||
#include "boxes/send_files_box.h"
|
#include "boxes/send_files_box.h"
|
||||||
|
#include "base/platform/base_platform_info.h"
|
||||||
#include "ui/widgets/input_fields.h"
|
#include "ui/widgets/input_fields.h"
|
||||||
#include "ui/emoji_config.h"
|
#include "ui/emoji_config.h"
|
||||||
#include "export/export_settings.h"
|
#include "export/export_settings.h"
|
||||||
|
@ -2049,7 +2050,10 @@ bool _readOldMtpData(bool remove, ReadSettingsContext &context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void _writeUserSettings() {
|
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!"));
|
LOG(("App Error: attempt to write settings while reading them!"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -2573,6 +2577,7 @@ void finish() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void InitialLoadTheme();
|
void InitialLoadTheme();
|
||||||
|
bool ApplyDefaultNightMode();
|
||||||
void readLangPack();
|
void readLangPack();
|
||||||
|
|
||||||
void start() {
|
void start() {
|
||||||
|
@ -2592,7 +2597,10 @@ void start() {
|
||||||
_readOldMtpData(false, context); // needed further in _readMtpData
|
_readOldMtpData(false, context); // needed further in _readMtpData
|
||||||
applyReadContext(std::move(context));
|
applyReadContext(std::move(context));
|
||||||
|
|
||||||
return writeSettings();
|
if (!ApplyDefaultNightMode()) {
|
||||||
|
writeSettings();
|
||||||
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
LOG(("App Info: reading settings..."));
|
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() {
|
Window::Theme::Saved readThemeAfterSwitch() {
|
||||||
const auto key = Window::Theme::IsNightMode()
|
const auto key = Window::Theme::IsNightMode()
|
||||||
? _themeKeyNight
|
? _themeKeyNight
|
||||||
|
|
Loading…
Reference in New Issue