From ba8257ce64de5ee0069659ef637968d75a509d74 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Tue, 9 Apr 2019 17:10:58 +0300 Subject: [PATCH] Fixed top bar glitch when returning dialog back too fast. --- .../SourceFiles/history/view/history_view_top_bar_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/view/history_view_top_bar_widget.cpp b/Telegram/SourceFiles/history/view/history_view_top_bar_widget.cpp index 613f73ea1..e393713ad 100644 --- a/Telegram/SourceFiles/history/view/history_view_top_bar_widget.cpp +++ b/Telegram/SourceFiles/history/view/history_view_top_bar_widget.cpp @@ -539,6 +539,7 @@ void TopBarWidget::updateControlsGeometry() { void TopBarWidget::finishAnimating() { _selectedShown.stop(); updateControlsVisibility(); + update(); } void TopBarWidget::setAnimatingMode(bool enabled) { @@ -546,7 +547,6 @@ void TopBarWidget::setAnimatingMode(bool enabled) { _animatingMode = enabled; setAttribute(Qt::WA_OpaquePaintEvent, !_animatingMode); finishAnimating(); - updateControlsVisibility(); } }