Fixed bug in drawing text in menu titles

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8608 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2001-01-16 12:23:17 +00:00
parent 83df4ad3b9
commit 32915c1d25

View file

@ -1376,7 +1376,8 @@ static NSString *NSMenuLocationsKey = @"NSMenuLocations";
[[NSColor windowFrameTextColor] set];
[[NSFont boldSystemFontOfSize: 0] set];
PSmoveto(rect.origin.x + 7, rect.origin.y + 7);
workRect = _bounds;
PSmoveto(workRect.origin.x + 7, workRect.origin.y + 7);
PSshow([[menu title] cString]);
}