From 90841b3e8d743d5f71246ad98441b7bc6ea55ac1 Mon Sep 17 00:00:00 2001 From: Purple <38256064+IamSanjid@users.noreply.github.com> Date: Mon, 11 Apr 2022 05:57:31 +0600 Subject: [PATCH] fixed clang format --- src/yuzu/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index b1a0d83e39..d5e438f2a5 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3600,7 +3600,8 @@ void GMainWindow::leaveEvent(QEvent* event) { qint32 x = qBound(rect.left(), position.x(), rect.right()); qint32 y = qBound(rect.top(), position.y(), rect.bottom()); - /* only start the timer if the mouse has left the window bound, the leave event is also triggered when the window looses focus */ + // Only start the timer if the mouse has left the window bound. + // The leave event is also triggered when the window looses focus. if (x != position.x() || y != position.y()) { mouse_center_timer.start(); }