mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 13:25:59 +01:00
parent
3529fbc6d4
commit
b6a7fb9e91
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ void CLayerSurface::onCommit() {
|
||||||
|
|
||||||
for (auto it = PMONITOR->m_aLayerSurfaceLayers[layer].begin(); it != PMONITOR->m_aLayerSurfaceLayers[layer].end(); it++) {
|
for (auto it = PMONITOR->m_aLayerSurfaceLayers[layer].begin(); it != PMONITOR->m_aLayerSurfaceLayers[layer].end(); it++) {
|
||||||
if (*it == self) {
|
if (*it == self) {
|
||||||
PMONITOR->m_aLayerSurfaceLayers[layerSurface->current.layer].emplace_back(std::move(*it));
|
PMONITOR->m_aLayerSurfaceLayers[layerSurface->current.layer].emplace_back(*it);
|
||||||
PMONITOR->m_aLayerSurfaceLayers[layer].erase(it);
|
PMONITOR->m_aLayerSurfaceLayers[layer].erase(it);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue