Applied patch for 15988

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22641 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-03-12 01:41:26 +00:00
parent f96739125d
commit a05c71fae7
3 changed files with 13 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2006-03-11 20:40 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormViewWithContentViewEditor.m: Minor formatting changes.
* Palettes/4Data/DataPalette.m: Correction for bug#15988, patch by
Matt Rice.
2006-03-11 16:57 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/3Containers/GormTableViewEditor.m: Correction for

View file

@ -573,9 +573,11 @@
//case guideLine
if ( _followGuideLine )
suggestedFrame = [[selection objectAtIndex: 0]
_displayMovingFrameWithHint: r
andPlacementInfo: gpi];
{
suggestedFrame = [[selection objectAtIndex: 0]
_displayMovingFrameWithHint: r
andPlacementInfo: gpi];
}
else
{
suggestedFrame = NSMakeRect (NSMinX(r),
@ -591,8 +593,7 @@
}
else
{
enumerator = [selection objectEnumerator];
enumerator = [selection objectEnumerator];
while ((subview = [enumerator nextObject]) != nil)
{
NSRect oldFrame = [subview frame];

View file

@ -262,7 +262,7 @@ int defaultDateFormatIndex = 3;
tv = [[NSTextView alloc] initWithFrame: rect];
[tv setMinSize: NSMakeSize(0.0, 0.0)];
[tv setMaxSize: NSMakeSize(1.0E7,1.0E7)];
[tv setHorizontallyResizable: NO];
[tv setHorizontallyResizable: YES];
[tv setVerticallyResizable: YES];
[tv setAutoresizingMask: NSViewHeightSizable | NSViewWidthSizable];
[tv setSelectable: YES];