mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
* 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:
parent
436bd9b029
commit
6d314f7223
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue