mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 16:10:48 +00:00
Add tooltips to buttons.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36081 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
37311e0e04
commit
9e67500f35
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-02-07 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Source/NSSavePanel.m (initWithoutGModel):
|
||||
Add tooltips to buttons.
|
||||
|
||||
2013-02-06 Quentin Mathe <quentin.mathe@gmail.com>
|
||||
|
||||
* Source/NSView.m (-encodeWithCoder:): Fixed to encode the superview
|
||||
|
|
|
@ -273,6 +273,7 @@ setPath(NSBrowser *browser, NSString *path)
|
|||
[button setAction: @selector(_setHomeDirectory)];
|
||||
[button setAutoresizingMask: NSViewMinXMargin];
|
||||
[button setTag: NSFileHandlingPanelHomeButton];
|
||||
[button setToolTip:_(@"Home")];
|
||||
[_bottomView addSubview: button];
|
||||
[lastKeyView setNextKeyView: button];
|
||||
lastKeyView = button;
|
||||
|
@ -288,6 +289,7 @@ setPath(NSBrowser *browser, NSString *path)
|
|||
[button setAction: @selector(_mountMedia)];
|
||||
[button setAutoresizingMask: NSViewMinXMargin];
|
||||
[button setTag: NSFileHandlingPanelDiskButton];
|
||||
[button setToolTip:_(@"Mount")];
|
||||
[_bottomView addSubview: button];
|
||||
[lastKeyView setNextKeyView: button];
|
||||
lastKeyView = button;
|
||||
|
@ -303,6 +305,7 @@ setPath(NSBrowser *browser, NSString *path)
|
|||
[button setAction: @selector(_unmountMedia)];
|
||||
[button setAutoresizingMask: NSViewMinXMargin];
|
||||
[button setTag: NSFileHandlingPanelDiskEjectButton];
|
||||
[button setToolTip:_(@"Unmount")];
|
||||
[_bottomView addSubview: button];
|
||||
[lastKeyView setNextKeyView: button];
|
||||
lastKeyView = button;
|
||||
|
|
Loading…
Reference in a new issue