From 639b4bdd27fc5ec4acedb551b6c16baf0ea8849c Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Thu, 5 Sep 2019 11:54:55 +0300 Subject: [PATCH] Fixed badge update during theme testing. --- .../SourceFiles/platform/mac/mac_touchbar.mm | 36 +++++++------------ 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm index 592f61991..93c3b50df 100644 --- a/Telegram/SourceFiles/platform/mac/mac_touchbar.mm +++ b/Telegram/SourceFiles/platform/mac/mac_touchbar.mm @@ -498,28 +498,19 @@ void AppendEmojiPacks(std::vector &to) { button.action = @selector(buttonActionPin:); self.view = button; - using Update = const Window::Theme::BackgroundUpdate; - auto themeChanged = base::ObservableViewer( + base::ObservableViewer( *Window::Theme::Background() - ) | rpl::start_spawning(_lifetime); - - rpl::duplicate( - themeChanged - ) | rpl::filter([=](const Update &update) { - return update.paletteChanged() - && (_number <= kSavedMessagesId || UseEmptyUserpic(_peer)); + ) | rpl::filter([](const Window::Theme::BackgroundUpdate &update) { + return update.paletteChanged(); }) | rpl::start_with_next([=] { - [self updateUserpic]; - }, _lifetime); - - std::move( - themeChanged - ) | rpl::filter([=](const Update &update) { - return (update.type == Update::Type::ApplyingTheme) - && (_peer != nullptr) - && (UnreadCount(_peer) || Data::IsPeerAnOnlineUser(_peer)); - }) | rpl::start_with_next([=] { - [self updateBadge]; + crl::on_main([=] { + if (_number <= kSavedMessagesId || UseEmptyUserpic(_peer)) { + [self updateUserpic]; + } else if (_peer + && (UnreadCount(_peer) || Data::IsPeerAnOnlineUser(_peer))) { + [self updateBadge]; + } + }); }, _lifetime); if (num <= kSavedMessagesId) { @@ -613,9 +604,8 @@ void AppendEmojiPacks(std::vector &to) { return; } isWaitingUserpicLoad = !self.peer->userpicLoaded(); - auto pixmap = self.peer->genUserpic(kIdealIconSize); - pixmap.setDevicePixelRatio(cRetinaFactor()); - _userpic = pixmap; + _userpic = self.peer->genUserpic(kIdealIconSize); + _userpic.setDevicePixelRatio(cRetinaFactor()); [self updateBadge]; }