diff --git a/ChangeLog b/ChangeLog index b827225b..d737c386 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-27 19:25-EDT Gregory John Casamento + + * GormCore/GormViewEditor.m: Correct bug#20274. Changed call + displayIfNeededInRectIgnoringOpacity: to displayRectIgnoringOpacity: + 2007-04-29 17:08-EDT Gregory John Casamento * English.lproj/GormViewSizeInspector.gorm: Correct bug#19640 diff --git a/GormCore/GormViewEditor.m b/GormCore/GormViewEditor.m index d9d6e936..99f59555 100644 --- a/GormCore/GormViewEditor.m +++ b/GormCore/GormViewEditor.m @@ -1448,7 +1448,7 @@ static BOOL currently_displaying = NO; { [[self window] disableFlushWindow]; currently_displaying = YES; - [super displayIfNeededInRectIgnoringOpacity: rect]; + [super displayRectIgnoringOpacity: rect]; [self lockFocus]; [self postDraw: rect]; [self unlockFocus]; @@ -1458,7 +1458,7 @@ static BOOL currently_displaying = NO; } else { - [super displayIfNeededInRectIgnoringOpacity: rect]; + [super displayRectIgnoringOpacity: rect]; [self lockFocus]; [self postDraw: rect]; [self unlockFocus];