Resizing correction and blank text field when object does not have a tooltip.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23948 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-10-23 05:24:39 +00:00
parent fc12745708
commit 1bc8528853
3 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2006-10-23 01:23-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormHelpInspector.gorm: Change resize properties.
* GormCore/GormHelpInspector.m: in revert: blank text field when
no connections are retrieved.
2006-10-23 01:14-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* English.lproj/GormHelpInspector.gorm: Help inspector .gorm file.

View file

@ -73,6 +73,11 @@
NSString *val = [con marker];
[toolTip setStringValue: val];
}
else
{
[toolTip setStringValue: @""];
}
[super revert: sender];
}