* Source/NSWindow.m (-setFrameFromString:): Correct bug in

handling of in-window menus.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34798 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2012-02-20 17:46:28 +00:00
parent 44fb01a3fb
commit d3321c2ffa
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-02-20 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSWindow.m (-setFrameFromString:): Correct bug in
handling of in-window menus.
2012-02-19 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/NSOpenPanel.m (-beginSheetForDirectory:...,

View file

@ -4654,7 +4654,7 @@ current key view.<br />
if ([_wv hasMenu])
{
float menuBarHeight = [[GSTheme theme] menuHeightForWindow: self];
fRect.size.height -= menuBarHeight;
fRect.size.height += menuBarHeight;
fRect.origin.y -= menuBarHeight;
}