layersurface: avoid restack on identical layers

ref #6014
This commit is contained in:
Vaxry 2024-05-11 18:31:50 +01:00
parent b6a7fb9e91
commit 494b9415a1
1 changed files with 2 additions and 0 deletions

View File

@ -261,6 +261,8 @@ void CLayerSurface::onCommit() {
for (auto it = PMONITOR->m_aLayerSurfaceLayers[layer].begin(); it != PMONITOR->m_aLayerSurfaceLayers[layer].end(); it++) {
if (*it == self) {
if (layerSurface->current.layer == layer)
break;
PMONITOR->m_aLayerSurfaceLayers[layerSurface->current.layer].emplace_back(*it);
PMONITOR->m_aLayerSurfaceLayers[layer].erase(it);
break;