From d1cc09f40e507a46605f686d6bb4d29095b02608 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 1 Feb 2019 11:47:30 +0300 Subject: [PATCH] Destroy layers in reverse order. --- Telegram/SourceFiles/window/layer_widget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/window/layer_widget.cpp b/Telegram/SourceFiles/window/layer_widget.cpp index 539e519d3..9ee3cfa69 100644 --- a/Telegram/SourceFiles/window/layer_widget.cpp +++ b/Telegram/SourceFiles/window/layer_widget.cpp @@ -780,7 +780,8 @@ bool LayerStackWidget::takeToThirdSection() { } void LayerStackWidget::clearLayers() { - for (auto &layer : base::take(_layers)) { + for (auto list = base::take(_layers); !list.empty(); list.pop_back()) { + const auto layer = std::move(list.back()); if (layer->inFocusChain()) { setFocus(); }