From 8477573be5fea35434137d26f4ecfd42dcacf89e Mon Sep 17 00:00:00 2001 From: cTn Date: Fri, 17 Oct 2014 11:52:52 +0200 Subject: [PATCH] doubling initialization timeout inside port handler --- js/port_handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/port_handler.js b/js/port_handler.js index 8ac763fa19..e37d0d7630 100644 --- a/js/port_handler.js +++ b/js/port_handler.js @@ -111,7 +111,7 @@ PortHandler.check = function () { if (GUI.active_tab != 'firmware_flasher') { GUI.timeout_add('auto-connect_timeout', function () { $('div#port-picker a.connect').click(); - }, 50); // small timeout so we won't get any nasty connect errors due to system initializing the bus + }, 100); // timeout so bus have time to initialize after being detected by the system } }