mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-23 01:46:00 +01:00
renderer: add further conditions to solitary recheck
This commit is contained in:
parent
d61e4f9ad7
commit
2901bb0d2f
1 changed files with 8 additions and 0 deletions
|
@ -2045,6 +2045,14 @@ void CHyprRenderer::recheckSolitaryForMonitor(CMonitor* pMonitor) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (auto& w : g_pCompositor->m_vWindows) {
|
||||||
|
if (w->m_iWorkspaceID == PCANDIDATE->m_iWorkspaceID && w->m_bIsFloating && w->m_bCreatedOverFullscreen && !w->isHidden())
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pMonitor->specialWorkspaceID != 0)
|
||||||
|
return;
|
||||||
|
|
||||||
// check if it did not open any subsurfaces or shit
|
// check if it did not open any subsurfaces or shit
|
||||||
int surfaceCount = 0;
|
int surfaceCount = 0;
|
||||||
if (PCANDIDATE->m_bIsX11) {
|
if (PCANDIDATE->m_bIsX11) {
|
||||||
|
|
Loading…
Reference in a new issue