From 62a0878198653057c404aadf156fe38fe2b22fef Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 5 Jun 2015 20:06:37 +0300 Subject: [PATCH 1/2] linear anim for sticker packs icons --- Telegram/SourceFiles/dropdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/dropdown.cpp b/Telegram/SourceFiles/dropdown.cpp index a6d1bb406..64280d0a0 100644 --- a/Telegram/SourceFiles/dropdown.cpp +++ b/Telegram/SourceFiles/dropdown.cpp @@ -2066,7 +2066,7 @@ bool EmojiPan::iconAnim(float64 ms) { _iconsStartAnim = 0; _iconsX.finish(); } else { - _iconsX.update(dt, anim::sineInOut); + _iconsX.update(dt, anim::linear); } updateSelected(); } From 318794692f26211b2247b2c198cae363074ff009 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 6 Jun 2015 20:08:44 +0300 Subject: [PATCH 2/2] trying to fix undefined behaviour in notifyShowNext() --- Telegram/SourceFiles/window.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/window.cpp b/Telegram/SourceFiles/window.cpp index 8309bc7a6..a373791ea 100644 --- a/Telegram/SourceFiles/window.cpp +++ b/Telegram/SourceFiles/window.cpp @@ -1415,7 +1415,8 @@ void Window::notifyShowNext(NotifyWindow *remove) { while (count > 0) { uint64 next = 0; HistoryItem *notifyItem = 0; - NotifyWaiters::iterator notifyWaiter; + History *notifyHistory = 0; + NotifyWaiters::iterator notifyWaiter = notifyWaiters.end(); for (NotifyWaiters::iterator i = notifyWaiters.begin(); i != notifyWaiters.end(); ++i) { History *history = i.key(); if (history->currentNotification() && history->currentNotification()->id != i.value().msg) { @@ -1423,6 +1424,7 @@ void Window::notifyShowNext(NotifyWindow *remove) { if (j == notifyWhenMaps.end()) { history->clearNotifications(); i = notifyWaiters.erase(i); + if (notifyHistory) notifyWaiter = notifyWaiters.find(notifyHistory); continue; } do { @@ -1438,12 +1440,14 @@ void Window::notifyShowNext(NotifyWindow *remove) { if (!history->currentNotification()) { notifyWhenMaps.remove(history); i = notifyWaiters.erase(i); + if (notifyHistory) notifyWaiter = notifyWaiters.find(notifyHistory); continue; } uint64 when = i.value().when; if (!notifyItem || next > when) { next = when; notifyItem = history->currentNotification(); + notifyHistory = history; notifyWaiter = i; } } @@ -1510,8 +1514,8 @@ void Window::notifyShowNext(NotifyWindow *remove) { } if (!history->hasNotification()) { - notifyWaiters.erase(notifyWaiter); - if (j != notifyWhenMaps.end()) notifyWhenMaps.erase(j); + if (notifyWaiter != notifyWaiters.cend()) notifyWaiters.erase(notifyWaiter); + if (j != notifyWhenMaps.cend()) notifyWhenMaps.erase(j); continue; } }