From cf01cd1f26a79afe90f97e297b663c900ef64d01 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Wed, 27 Jun 2007 23:33:35 +0000 Subject: [PATCH] Corrected 20274. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@25294 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ GormCore/GormViewEditor.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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];