* Source/x11/XGServerWindow.m (-flushwindowrect::): Don't convert

rect origin sent to handleExposeRect:forDriver: to int and back to
        float.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@24287 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ratmice 2006-12-28 19:41:56 +00:00
parent 660a25fac5
commit 97f98da902
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-12-28 Matt Rice <ratmice@gmail.com>
* Source/x11/XGServerWindow.m (-flushwindowrect::): Don't convert
rect origin sent to handleExposeRect:forDriver: to int and back to
float.
2006-12-27 Richard Frith-Macdonald <rfm@gnu.org>
* Source/cairo/CairoContext.m: declare XWindowBuffer class

View file

@ -3265,8 +3265,8 @@ static BOOL didCreatePixmaps;
[self styleoffsets: &l : &r : &t : &b
: window->win_attrs.window_style : window->ident];
rect.origin.x = xi = NSMinX(rect) - l;
rect.origin.y = yi = NSHeight(window->xframe) + b - NSMaxY(rect);
xi = rect.origin.x = NSMinX(rect) - l;
yi = rect.origin.y = NSHeight(window->xframe) + b - NSMaxY(rect);
width = NSWidth(rect);
height = NSHeight(rect);