From 5c49483ce411da6767c6114d3ccf710c04efb6fb Mon Sep 17 00:00:00 2001 From: Joerg Date: Sat, 2 Nov 2024 15:08:11 +0100 Subject: [PATCH] Adjusted warning threshold again to 10ms --- src/mixxxapplication.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mixxxapplication.cpp b/src/mixxxapplication.cpp index 8c5652b8dbe..3d45fe052b3 100644 --- a/src/mixxxapplication.cpp +++ b/src/mixxxapplication.cpp @@ -78,9 +78,9 @@ class QMouseEventEditable : public QMouseEvent { // potentially slow event processing in the application, which could impact // performance. With a 60Hz waveform update rate, paint and swap events must be // processed through the event queue every 16.6ms, to ensure smooth rendering. -// Exceeding this processing time can lead to visible delays, therefore 5ms is a +// Exceeding this processing time can lead to visible delays, therefore 10ms is a // reasonable threshold. -constexpr mixxx::Duration kEventNotifyExecTimeWarningThreshold = mixxx::Duration::fromMillis(5); +constexpr mixxx::Duration kEventNotifyExecTimeWarningThreshold = mixxx::Duration::fromMillis(10); } // anonymous namespace