mirror of
git://slackware.nl/current.git
synced 2025-01-06 05:25:20 +01:00
855c3ceaa9
ap/nano-5.2-x86_64-1.txz: Upgraded. d/doxygen-1.8.20-x86_64-1.txz: Upgraded. d/nasm-2.15.03-x86_64-1.txz: Upgraded. Reverted to previous nasm since the new version has problems with some of the assembly included in Firefox. d/parallel-20200822-noarch-1.txz: Upgraded. l/libcap-ng-0.7.11-x86_64-1.txz: Upgraded. n/libgpg-error-1.39-x86_64-1.txz: Upgraded. n/libqmi-1.26.4-x86_64-1.txz: Upgraded. xap/mozilla-firefox-78.2.0esr-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/78.2.0/releasenotes/ (* Security fix *) xap/sane-1.0.31-x86_64-1.txz: Upgraded.
20 lines
855 B
Diff
20 lines
855 B
Diff
--- ./src/evdev.c.orig 2020-08-12 22:50:03.612642300 -0500
|
|
+++ ./src/evdev.c 2020-08-20 17:26:17.663305924 -0500
|
|
@@ -1027,7 +1027,7 @@
|
|
|
|
/* if we have a current libinput_dispatch() snapshot, compare our
|
|
* event time with the one from the snapshot. If we have more than
|
|
- * 10ms delay, complain about it. This catches delays in processing
|
|
+ * 75ms delay, complain about it. This catches delays in processing
|
|
* where there is no steady event flow and thus SYN_DROPPED may not
|
|
* get hit by the kernel despite us being too slow.
|
|
*/
|
|
@@ -1035,7 +1035,7 @@
|
|
return;
|
|
|
|
tdelta = us2ms(libinput->dispatch_time - input_event_time(ev));
|
|
- if (tdelta > 10) {
|
|
+ if (tdelta > 75) {
|
|
evdev_log_bug_client_ratelimit(device,
|
|
&device->delay_warning_limit,
|
|
"event processing lagging behind by %dms, your system is too slow\n",
|