limit scope of fix for Display.setParent when running in xembedded mode.

This commit is contained in:
kappa1 2011-09-26 20:03:59 +00:00
parent 83675cffb1
commit d316d66e1b
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ final class LinuxDisplay implements DisplayImplementation {
private static native void synchronize(long display, boolean synchronize);
private static int globalErrorHandler(long display, long event_ptr, long error_display, long serial, long error_code, long request_code, long minor_code) throws LWJGLException {
if (xembedded) return 0; // ignore X errors in xembeded mode to fix browser issues like dragging or switching tabs
if (xembedded && request_code == 42) return 0; // ignore X error in xembeded mode to fix a browser issue when dragging or switching tabs
if (display == getDisplay()) {
String error_msg = getErrorText(display, error_code);