* Source/NSFontPanel.m: Add a tooltip on the character panel button

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33817 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2011-09-08 05:59:20 +00:00
parent 9bbf725f7c
commit 741578fb42
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2011-09-07 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSFontPanel.m: Add a tooltip on the character panel button
2011-09-07 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSSpellChecker.m: Use NSLog rather than a popup alert when the spell

View file

@ -730,6 +730,7 @@ static float sizes[] = {4.0, 6.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0,
characterPanelButton = [[NSButton alloc] initWithFrame: characterPanelButtonRect];
[characterPanelButton setTitle: label];
[characterPanelButton setToolTip: _(@"Character Panel")];
[characterPanelButton setAction: @selector(characterPanel:)];
[characterPanelButton setTarget: self];
[bottomArea addSubview: characterPanelButton];