Revert last change in GSWindowDecorationView.m while found the real problem

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@35205 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2012-06-15 18:45:14 +00:00
parent a92d331704
commit 60f4f3c880
2 changed files with 6 additions and 11 deletions

View file

@ -372,20 +372,10 @@ static inline NSRect RectWithSizeScaledByFactor(NSRect aRect, CGFloat factor)
orgWindowFrame = [window frame];
windowFrame.origin.y = orgWindowFrame.origin.y + orgWindowFrame.size.height - windowFrame.size.height;
windowFrame.origin.x = orgWindowFrame.origin.x;
/* FIXME: Make an intermediate frame to set in the window before call -layout.
* Later we will set a frame with the correct dimensions. This intermediate
* frame only differs on the width (subtract 1). This ensure the correct
* behaviour of the in-window menu. Even when I'm not sure why.
*/
windowFrame.size.width -= 1;
// then resize the window with the intermediate frame and call -layout
// then resize the window
[window setFrame: windowFrame display: YES];
[self layout];
// Now resize the window to correct width
windowFrame.size.width += 1;
[window setFrame: windowFrame display: YES];
}
/*