We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug While running a JCEF-based application, I noticed some unexpected messages being written to the STDERR stream (System.err)
System.err
These messages simply read Exception in thread "AWT-EventQueue-0"
Exception in thread "AWT-EventQueue-0"
After a significant amount of effort, I tracked these down to an unreported StackOverflowError, being triggered by CefClient.onGotFocus
StackOverflowError
CefClient.onGotFocus
To Reproduce Steps to reproduce the behavior:
useOsr
true
main
MainFrame
--add-exports
Expected behavior We shouldn't see unexpected errors...
Versions (please complete the following information):
Additional context Putting a breakpoint in CefClient.onGotFocus reveals that this method is triggered repeatedly, with the following stack:
onGotFocus:461, CefClient (org.cef) [39] N_SetFocus:-1, CefBrowser_N (org.cef.browser) setFocus:497, CefBrowser_N (org.cef.browser) onGotFocus:461, CefClient (org.cef) [38] ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
While running a JCEF-based application, I noticed some unexpected messages being written to the STDERR stream (
System.err
)These messages simply read
Exception in thread "AWT-EventQueue-0"
After a significant amount of effort, I tracked these down to an unreported
StackOverflowError
, being triggered byCefClient.onGotFocus
To Reproduce
Steps to reproduce the behavior:
useOsr
totrue
in themain
method of theMainFrame
class--add-exports
parameters are included for Java 9+)System.err
log output contains multiple instances ofException in thread "AWT-EventQueue-0"
Expected behavior
We shouldn't see unexpected errors...
Versions (please complete the following information):
Additional context
Putting a breakpoint in
CefClient.onGotFocus
reveals that this method is triggered repeatedly, with the following stack:The text was updated successfully, but these errors were encountered: