core/fullscreen: fix floating window rendering order when one of them is FSed (#15703)

This commit is contained in:
erStarr
2026-08-03 23:36:27 +02:00
committed by GitHub
parent 5c6f0aa2df
commit e2b2e6bcd4
+1 -1
View File
@@ -1002,7 +1002,7 @@ bool CWindow::isFadingOutUnderFullscreen() const {
}
bool CWindow::shouldRenderOverFullscreen() const {
return isAllowedOverFullscreen() || isFadingOutUnderFullscreen();
return isAllowedOverFullscreen() || !isFadingOutUnderFullscreen();
}
void CWindow::updateFullscreenInputState() {