mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 10:40:47 +00:00
Change some defaults and minor bug fixes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@1806 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2e4243b043
commit
0cc4b39bb1
6 changed files with 168 additions and 53 deletions
|
@ -708,7 +708,9 @@ Class NSMATRIX_DEFAULT_CELL_CLASS;
|
|||
|| (aPoint.y < myFrame.origin.y)
|
||||
|| (aPoint.y > (myFrame.origin.y + myFrame.size.height)))
|
||||
{
|
||||
NSDebugLog(@"NSMatrix not in frame rect\n");
|
||||
NSDebugLog(@"NSMatrix point %f %f not in rect %f %f %f %f\n",
|
||||
aPoint.x, aPoint.y, myFrame.origin.x, myFrame.origin.y,
|
||||
myFrame.size.width, myFrame.size.height);
|
||||
return NO;
|
||||
}
|
||||
else
|
||||
|
@ -1136,6 +1138,12 @@ Class NSMATRIX_DEFAULT_CELL_CLASS;
|
|||
[(NSView *)self setFrameSize:newSize];
|
||||
}
|
||||
|
||||
- (void)resizeWithOldSuperviewSize:(NSSize)oldSize
|
||||
{
|
||||
NSDebugLog(@"NSMatrix resize %f %f old %f %f\n", bounds.size.width,
|
||||
bounds.size.height, oldSize.width, oldSize.height);
|
||||
}
|
||||
|
||||
//
|
||||
// Scrolling
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue