diff --git a/Telegram/SourceFiles/window/layer_widget.cpp b/Telegram/SourceFiles/window/layer_widget.cpp index 73e9fa726..7d918fe62 100644 --- a/Telegram/SourceFiles/window/layer_widget.cpp +++ b/Telegram/SourceFiles/window/layer_widget.cpp @@ -559,9 +559,12 @@ void LayerStackWidget::startAnimation( } else { setupNewWidgets(); setCacheImages(); + const auto weak = make_weak(this); clearOldWidgets(); - prepareForAnimation(); - _background->startAnimation(action); + if (weak) { + prepareForAnimation(); + _background->startAnimation(action); + } } }