Dont' flip coordinates in frame autosaved strings

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14260 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
nico 2002-08-09 10:14:45 +00:00
parent ecbbd9ce39
commit f3120d5e09

View file

@ -3517,11 +3517,6 @@ resetCursorRectsForView(NSView *theView)
{ {
} }
/*
* Convert frame from flipped to normal coordinates.
*/
fRect.origin.y -= fRect.size.height;
/* /*
* Check and set frame. * Check and set frame.
*/ */
@ -3574,7 +3569,7 @@ resetCursorRectsForView(NSView *theView)
NSRect sRect; NSRect sRect;
fRect = _frame; fRect = _frame;
fRect.origin.y += fRect.size.height; /* Make flipped */
/* /*
* FIXME - the screen rectangle should give the area of the screen in which * FIXME - the screen rectangle should give the area of the screen in which
* the window could be placed (ie a rectangle excluding the dock), but * the window could be placed (ie a rectangle excluding the dock), but