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;