]> source.dussan.org Git - tigervnc.git/commitdiff
Break long lines in new pointerEvent logic
authorSamuel Mannehed <samuel@cendio.se>
Fri, 26 Jan 2024 12:19:31 +0000 (13:19 +0100)
committerSamuel Mannehed <samuel@cendio.se>
Fri, 26 Jan 2024 12:19:31 +0000 (13:19 +0100)
common/rfb/VNCServerST.cxx

index bd29f243616d1cd1dd385f37c17d9a8d2fd80242..50efbb3c9f439d0d118203b4b801c19a93487733 100644 (file)
@@ -490,9 +490,10 @@ void VNCServerST::pointerEvent(VNCSConnectionST* client,
     idleTimer.start(secsToMillis(rfb::Server::maxIdleTime));
 
   // Let one client own the cursor whilst buttons are pressed in order
-  // to provide a bit more sane user experience. But limit the time to prevent
-  // locking out all others when e.g. the network is down.
-  if ((pointerClient != NULL) && (pointerClient != client) && ((now - pointerClientTime) < 3))
+  // to provide a bit more sane user experience. But limit the time to
+  // prevent locking out all others when e.g. the network is down.
+  if ((pointerClient != NULL) && (pointerClient != client) &&
+      ((now - pointerClientTime) < 3))
     return;
 
   pointerClientTime = now;