mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-10 08:45:59 +01:00
fix last partial commit
This commit is contained in:
parent
5fdd1dd60f
commit
4b7d28d2cb
1 changed files with 4 additions and 4 deletions
|
@ -1159,17 +1159,17 @@ void CConfigManager::loadConfigLoadVars() {
|
||||||
// update layout
|
// update layout
|
||||||
g_pLayoutManager->switchToLayout(configValues["general:layout"].strValue);
|
g_pLayoutManager->switchToLayout(configValues["general:layout"].strValue);
|
||||||
|
|
||||||
// mark blur dirty
|
|
||||||
for (auto& m : g_pCompositor->m_vMonitors) {
|
for (auto& m : g_pCompositor->m_vMonitors) {
|
||||||
|
// mark blur dirty
|
||||||
g_pHyprOpenGL->markBlurDirtyForMonitor(m.get());
|
g_pHyprOpenGL->markBlurDirtyForMonitor(m.get());
|
||||||
|
|
||||||
m->forceFullFrames = 2; // Force the compositor to fully re-render all monitors
|
// Force the compositor to fully re-render all monitors
|
||||||
|
m->forceFullFrames = 2;
|
||||||
|
|
||||||
// rearrange layers
|
// rearrange layers
|
||||||
g_pHyprRenderer->arran
|
g_pHyprRenderer->arrangeLayersForMonitor(m->ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Reset no monitor reload
|
// Reset no monitor reload
|
||||||
m_bNoMonitorReload = false;
|
m_bNoMonitorReload = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue