mirror of https://github.com/procxx/kepka.git
Destroy layers in reverse order.
This commit is contained in:
parent
a133b43eed
commit
d1cc09f40e
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue