mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-30 00:40:55 +00:00
* Source/x11/XGServerEvent.m (-processEvent:): Reenable
Richard's frontend based expose code. * Source/x11/XGServerWindow.m (-window::::, -_checkStyle:): Don't use CWBackPixel, as the window background may be different. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@38419 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
59723d8e42
commit
042f6f3761
3 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
2015-03-22 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/x11/XGServerEvent.m (-processEvent:): Reenable Richard's
|
||||
frontend based expose code.
|
||||
* Source/x11/XGServerWindow.m (-window::::, -_checkStyle:): Don't
|
||||
use CWBackPixel, as the window background may be different.
|
||||
|
||||
2015-03-21 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/x11/XGGeneric.h
|
||||
|
|
|
@ -1065,7 +1065,7 @@ posixFileDescriptor: (NSPosixFileDescriptor*)fileDescriptor
|
|||
NSDebugLLog(@"NSEvent", @"Expose frame %d %d %d %d\n",
|
||||
rectangle.x, rectangle.y,
|
||||
rectangle.width, rectangle.height);
|
||||
#if 1
|
||||
#if 0
|
||||
// ignore backing if sub-window
|
||||
[self _addExposedRectangle: rectangle : cWin->number : isSubWindow];
|
||||
|
||||
|
|
|
@ -842,7 +842,7 @@ _get_next_prop_new_event(Display *display, XEvent *event, char *arg)
|
|||
context->depth,
|
||||
CopyFromParent,
|
||||
context->visual,
|
||||
(CWColormap | CWBackPixel | CWBorderPixel | CWOverrideRedirect),
|
||||
(CWColormap | CWBorderPixel | CWOverrideRedirect),
|
||||
&window->xwn_attrs);
|
||||
|
||||
/*
|
||||
|
@ -2048,7 +2048,9 @@ _get_next_prop_new_event(Display *display, XEvent *event, char *arg)
|
|||
context->depth,
|
||||
CopyFromParent,
|
||||
context->visual,
|
||||
(CWColormap | CWBackPixel | CWBorderPixel | CWOverrideRedirect),
|
||||
// Don't set the CWBackPixel, as the background of the
|
||||
// window may be different.
|
||||
(CWColormap | CWBorderPixel | CWOverrideRedirect),
|
||||
&window->xwn_attrs);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue