Destroy layers in reverse order.

This commit is contained in:
John Preston 2019-02-01 11:47:30 +03:00
parent a133b43eed
commit d1cc09f40e
1 changed files with 2 additions and 1 deletions

View File

@ -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();
}