diff --git a/ChangeLog b/ChangeLog index 209960c3..fc11e595 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-06-15 01:28 Gregory John Casamento + + * GormPalettesManager.m: [GormPalettesManager mouseDown:] a + call to convertRect:toView: was added to correctly translate the + view being dragged in all cases. This will show no real benefit + until Alex M. adds the window decoration patches. + 2004-06-10 01:28 Gregory John Casamento * Gorm.m: [Gorm testInterface] added code in the exception diff --git a/GormPalettesManager.m b/GormPalettesManager.m index 31508461..8ae9bd46 100644 --- a/GormPalettesManager.m +++ b/GormPalettesManager.m @@ -173,7 +173,8 @@ static NSImage *dragImage = nil; control (like the contentView of an NSBox) */ while (view != nil && [view superview] != self) view = [view superview]; - rect = [view frame]; + rect = [[view superview] convertRect: [view frame] + toView: nil]; // this will always get the correct coordinates... if (active == nil) {