From fe0bff086c5b90ce0908a7e7b66d5c564b176fdf Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Sat, 20 Jul 2024 10:12:57 -0400 Subject: [PATCH] Raise remote input timeout to 300 seconds The first input event on reconnection is currently being lost, this should make reconnections much less frequent. See #1836. --- src/service/components/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service/components/input.js b/src/service/components/input.js index 49fd65f96..0675af3b0 100644 --- a/src/service/components/input.js +++ b/src/service/components/input.js @@ -10,7 +10,7 @@ import GObject from 'gi://GObject'; import AtspiController from './atspi.js'; -const SESSION_TIMEOUT = 15; +const SESSION_TIMEOUT = 300; const RemoteSession = GObject.registerClass({