layout: Use refreshrate tick on all manual animations (#2988)

This commit is contained in:
Dashie 2023-08-16 10:56:48 +02:00 committed by GitHub
parent 63b266cf65
commit 19c4855afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,7 +301,7 @@ void IHyprLayout::onMouseMove(const Vector2D& mousePos) {
if ((abs(TICKDELTA.x) < 1.f && abs(TICKDELTA.y) < 1.f) ||
(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - TIMER).count() <
1000.0 / g_pHyprRenderer->m_pMostHzMonitor->refreshRate &&
*PANIMATEMOUSE))
(*PANIMATEMOUSE || *PANIMATE)))
return;
TIMER = std::chrono::high_resolution_clock::now();