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:
nico 2001-01-16 12:23:17 +00:00
parent e571f3019f
commit 764778ec87

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]);
}