* Source/NSBrowser.m: ([drawWithFrame:inView:]) pass inset rect by

1 to drawInteriorWithFrame:.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25224 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sergii Stoian 2007-06-06 23:56:26 +00:00
parent 436bd9b029
commit 6d314f7223
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-06-07 Sergii Stoian <stoyan255@gmail.com>
* Source/NSBrowser.m: ([drawWithFrame:inView:]) pass inset rect by
1 to drawInteriorWithFrame:.
2007-06-03 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSOpenPanel.m: In -filenames append name to directory using

View file

@ -207,7 +207,8 @@ static NSTextFieldCell *titleCell;
}
[[GSTheme theme] drawGrayBezel: cellFrame withClip: NSZeroRect];
[self drawInteriorWithFrame: cellFrame inView: controlView];
[self drawInteriorWithFrame: NSInsetRect(cellFrame, 1.0, 1.0)
inView: controlView];
}
@end