mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
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:
parent
f96739125d
commit
a05c71fae7
3 changed files with 13 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue