diff --git a/ChangeLog b/ChangeLog index 8880d1e37..97df9e870 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-02-19 Enrico Sersale + + * Source/NSAlert.m: (-_initWithoutGModel): + added [setImageDimsWhenDisabled: NO} to not show the application icon dimmed. + 2007-02-19 Fred Kiefer * Source/NSMatrix.m (cellFrameAtRow:column:, drawRect:, @@ -11,7 +16,7 @@ 2007-02-16 Richard Frith-Macdoanld - * Source/NSMenuItemCell.m: fixup glitch with drawing of horizontal + * Source/NSMenuItSemCell.m: fixup glitch with drawing of horizontal menu items overwriting menu border. * Source/NSMenuView.m: use menubar font size to calculate menubar height. diff --git a/Source/NSAlert.m b/Source/NSAlert.m index 7decb4fc6..6271f74b2 100644 --- a/Source/NSAlert.m +++ b/Source/NSAlert.m @@ -357,6 +357,7 @@ setControl(NSView* content, id control, NSString *title) [icoButton setAutoresizingMask: NSViewMaxXMargin|NSViewMinYMargin]; [icoButton setBordered: NO]; [icoButton setEnabled: NO]; + [[icoButton cell] setImageDimsWhenDisabled: NO]; [icoButton setImagePosition: NSImageOnly]; image = [[NSApplication sharedApplication] applicationIconImage]; [icoButton setImage: image];