We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0a0485 commit b93ae44Copy full SHA for b93ae44
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Edge.java
@@ -439,6 +439,11 @@ boolean isWebView_13Available() {
439
void scheduleWebViewTask(Runnable action) {
440
lastWebViewTask = lastWebViewTask.thenRun(() -> {
441
action.run();
442
+ }).orTimeout(5, TimeUnit.SECONDS);
443
+ lastWebViewTask.whenComplete((result, exception) -> {
444
+ if (exception != null) {
445
+ exception.printStackTrace();
446
+ }
447
});
448
}
449
0 commit comments