diff --git a/ChangeLog b/ChangeLog index 5cf3e358..f022864d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-16 23:19 Gregory John Casamento + + * GormCore/GormViewSizeInspector.m: Correction for a similar problem + in the view size inspector. Added to call to abort editing. + 2006-01-16 16:25 Gregory John Casamento * Palettes/1Windows/GormWindowSizeInspector.m: Correction for diff --git a/GormCore/GormViewSizeInspector.m b/GormCore/GormViewSizeInspector.m index 7f4c8b69..3478e45e 100644 --- a/GormCore/GormViewSizeInspector.m +++ b/GormCore/GormViewSizeInspector.m @@ -155,6 +155,9 @@ NSImage *mVLine = nil; if (anObject != object) return; + // stop editing so that the new values can be populated. + [sizeForm abortEditing]; + frame = [anObject frame]; [[sizeForm cellAtIndex: 0] setFloatValue: NSMinX(frame)]; [[sizeForm cellAtIndex: 1] setFloatValue: NSMinY(frame)];