mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00:00
Increase the timeout threshold for loading profiles. (#13661)
This commit is contained in:
@@ -7,8 +7,9 @@ function OnInit()
|
||||
|
||||
TargetPage=GetQueryString("target");
|
||||
|
||||
// Fallback timeout in case the C++ -> JS signal fails (e.g., WebKit issues)
|
||||
setTimeout("JumpToTarget()",20*1000);
|
||||
// Orca: fallback timeout in case the C++ -> JS signal fails (e.g., WebKit issues).
|
||||
// Jump to the target page after 3 minutes so slow computers don't get stuck on a partially loaded page.
|
||||
setTimeout("JumpToTarget()",180*1000);
|
||||
}
|
||||
|
||||
function HandleStudio( pVal )
|
||||
|
||||
Reference in New Issue
Block a user