Skip to content

Commit

Permalink
Adjusted warning threshold again to 10ms
Browse files Browse the repository at this point in the history
  • Loading branch information
JoergAtGithub committed Nov 2, 2024
1 parent a35179a commit 5c49483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mixxxapplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5c49483

Please sign in to comment.