* Source/GSThemeDrawing.m (-toolbarBorderColor): Change default to

[NSColor darkGrayColor]
* Source/NSToolbar.m (-initWithIdentifier:): Call
[self setShowsBaselineSeparator: YES] by default so the toolbar has
a bottom border.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@34983 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2012-03-22 23:11:44 +00:00
parent 58b983e638
commit 93ca7c0e0e
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2012-03-22 Eric Wasylishen <ewasylishen@gmail.com>
* Source/GSThemeDrawing.m (-toolbarBorderColor): Change default to
[NSColor darkGrayColor]
* Source/NSToolbar.m (-initWithIdentifier:): Call
[self setShowsBaselineSeparator: YES] by default so the toolbar has
a bottom border.
2012-03-12 Fred Kiefer <FredKiefer@gmx.de>
* Headers/AppKit/NSKeyValueBinding.h,

View file

@ -534,7 +534,7 @@
state: GSThemeNormalState];
if (color == nil)
{
color = [NSColor grayColor];
color = [NSColor darkGrayColor];
}
return color;
}

View file

@ -541,6 +541,7 @@ static GSValidationCenter *vc = nil;
}
_delegate = nil;
[self setShowsBaselineSeparator: YES];
// Store in list of toolbars
[toolbars addObject: self];