*** empty log message ***

This commit is contained in:
Elias Naur 2004-04-05 14:19:25 +00:00
parent 949977b485
commit 65c16c3741
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ static void createWindow(JNIEnv* env, Display *disp, int screen, XVisualInfo *vi
attribs.event_mask = ExposureMask | FocusChangeMask | VisibilityChangeMask| StructureNotifyMask | KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
attribs.background_pixel = 0xFF000000;
attribmask = CWColormap | CWBackPixel | CWEventMask;
if (fullscreen && undecorated) {
if (fullscreen || undecorated) {
attribmask |= CWOverrideRedirect;
attribs.override_redirect = True;
}