From 4348b3a5acc75d3ee5e74a3d65b27fbe3bc2def4 Mon Sep 17 00:00:00 2001 From: Quentin Mathe Date: Mon, 24 Jan 2005 11:25:42 +0000 Subject: [PATCH] Fixed white toolbar background bug git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20609 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 7 +++++++ Source/GSToolbarView.m | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 96082d5ea..e490723d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-01-24 Quentin Mathe + + * Source/GSToolbarView.m (initSystemExtensionsColors()): Removed + spurious 'else' (introduced with revision 1.11) which prevented toolbar + colors loading code to be executed (Fix the white toolbar background bug + reported by Riccardo Mottola). + 2005-01-24 Adrian Robert * Source/NSSavePanel.m (-_shouldShowExtension:isDir:, diff --git a/Source/GSToolbarView.m b/Source/GSToolbarView.m index 254f7a907..99be5b6ca 100644 --- a/Source/GSToolbarView.m +++ b/Source/GSToolbarView.m @@ -98,7 +98,7 @@ static void initSystemExtensionsColors(void) { SystemExtensionsColors = [[NSColorList alloc] initWithName: @"System extensions"]; } - else + { NSEnumerator *e; NSString *colorKey;