mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
fc12745708
commit
1bc8528853
3 changed files with 11 additions and 0 deletions
|
@ -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>
|
2006-10-23 01:14-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
* English.lproj/GormHelpInspector.gorm: Help inspector .gorm file.
|
* English.lproj/GormHelpInspector.gorm: Help inspector .gorm file.
|
||||||
|
|
Binary file not shown.
|
@ -73,6 +73,11 @@
|
||||||
NSString *val = [con marker];
|
NSString *val = [con marker];
|
||||||
[toolTip setStringValue: val];
|
[toolTip setStringValue: val];
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
[toolTip setStringValue: @""];
|
||||||
|
}
|
||||||
|
|
||||||
[super revert: sender];
|
[super revert: sender];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue