fix: [Wayland] Context menu opens behind apps launcher and popups

BUG: 437139
This commit is contained in:
Andrey Butirsky 2021-09-13 22:03:54 +03:00 committed by Nate Graham
parent b8d69a326c
commit 987c68f5a5

View file

@ -308,6 +308,8 @@ Layer AbstractClient::belongsToLayer() const
return ActiveLayer;
if (keepAbove())
return AboveLayer;
if (isPopupWindow())
return UnmanagedLayer;
return NormalLayer;
}