mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 00:45:57 +01:00
damage windows after switch
This commit is contained in:
parent
381d7a4300
commit
75b7e661e7
2 changed files with 6 additions and 0 deletions
|
@ -1134,6 +1134,9 @@ void CHyprDwindleLayout::switchWindows(CWindow* pWindow, CWindow* pWindow2) {
|
||||||
ACTIVE2->pWindow->m_vPosition = ACTIVE2->position;
|
ACTIVE2->pWindow->m_vPosition = ACTIVE2->position;
|
||||||
ACTIVE2->pWindow->m_vSize = ACTIVE2->size;
|
ACTIVE2->pWindow->m_vSize = ACTIVE2->size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_pHyprRenderer->damageWindow(pWindow);
|
||||||
|
g_pHyprRenderer->damageWindow(pWindow2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHyprDwindleLayout::alterSplitRatioBy(CWindow* pWindow, float ratio) {
|
void CHyprDwindleLayout::alterSplitRatioBy(CWindow* pWindow, float ratio) {
|
||||||
|
|
|
@ -498,6 +498,9 @@ void CHyprMasterLayout::switchWindows(CWindow* pWindow, CWindow* pWindow2) {
|
||||||
recalculateMonitor(pWindow->m_iMonitorID);
|
recalculateMonitor(pWindow->m_iMonitorID);
|
||||||
if (PNODE2->workspaceID != PNODE->workspaceID)
|
if (PNODE2->workspaceID != PNODE->workspaceID)
|
||||||
recalculateMonitor(pWindow2->m_iMonitorID);
|
recalculateMonitor(pWindow2->m_iMonitorID);
|
||||||
|
|
||||||
|
g_pHyprRenderer->damageWindow(pWindow);
|
||||||
|
g_pHyprRenderer->damageWindow(pWindow2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHyprMasterLayout::alterSplitRatioBy(CWindow* pWindow, float ratio) {
|
void CHyprMasterLayout::alterSplitRatioBy(CWindow* pWindow, float ratio) {
|
||||||
|
|
Loading…
Reference in a new issue