From 7a7f157a8ec45ecfee8c8ee0ff8ecf2b47ff82c3 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 1 Apr 2017 17:08:56 +0300 Subject: [PATCH] Fix crash in EmojiListWidget. Changing recent emoji list was giving us inconsistent emoji list in _emoji[section] and its size in SectionInfo::count field. --- Telegram/SourceFiles/stickers/emoji_list_widget.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/stickers/emoji_list_widget.cpp b/Telegram/SourceFiles/stickers/emoji_list_widget.cpp index 2c552a26e..f4ab38c6b 100644 --- a/Telegram/SourceFiles/stickers/emoji_list_widget.cpp +++ b/Telegram/SourceFiles/stickers/emoji_list_widget.cpp @@ -342,7 +342,7 @@ bool EmojiListWidget::enumerateSections(Callback callback) const { auto info = SectionInfo(); for (auto i = 0; i != kEmojiSectionCount; ++i) { info.section = i; - info.count = Ui::Emoji::GetSectionCount(static_cast
(i)); + info.count = _counts[i]; info.rowsCount = (info.count / kEmojiPanelPerRow) + ((info.count % kEmojiPanelPerRow) ? 1 : 0); info.rowsTop = info.top + (i == 0 ? st::emojiPanPadding : st::emojiPanHeader); info.rowsBottom = info.rowsTop + info.rowsCount * st::emojiPanSize.height(); @@ -389,6 +389,7 @@ void EmojiListWidget::ensureLoaded(int section) { return; } _emoji[section] = Ui::Emoji::GetSection(static_cast
(section)); + _counts[section] = _emoji[section].size(); if (static_cast
(section) == Section::Recent) { return; } @@ -677,8 +678,8 @@ void EmojiListWidget::processHideFinished() { void EmojiListWidget::refreshRecent() { clearSelection(); - _counts[0] = Ui::Emoji::GetSectionCount(Section::Recent); _emoji[0] = Ui::Emoji::GetSection(Section::Recent); + _counts[0] = _emoji[0].size(); auto h = countHeight(); if (h != height()) { resize(width(), h);