do updates on every mon update if VFR is enabled

This commit is contained in:
vaxerski 2022-07-05 21:45:32 +02:00
parent 7ff427c229
commit ae096219e8
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ void Events::listener_monitorFrame(void* owner, void* data) {
// Hack: only check when monitor with top hz refreshes, saves a bit of resources.
// This is for stuff that should be run every frame
if (PMONITOR->ID == pMostHzMonitor->ID) {
if (PMONITOR->ID == pMostHzMonitor->ID || *VFRENABLED) { // unfortunately with VFR we don't have the guarantee mostHz is going to be updated all the time, so we have to ignore that
g_pCompositor->sanityCheckWorkspaces();
g_pAnimationManager->tick();
g_pCompositor->cleanupFadingOut();