diff --git a/ChangeLog b/ChangeLog index d96b7fe1..7f1f57e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-07-08 Mirko Viviani + + * GormWindowEditor.m ([GormWindowEditor -_editTextView:withEvent:]): + return if mouse not on cell. + 2001-07-07 Richard Frith-Macdonald Gomr.m: Fixed typo in info panel and updated a little. diff --git a/GormWindowEditor.m b/GormWindowEditor.m index 8af38de2..20f8486f 100644 --- a/GormWindowEditor.m +++ b/GormWindowEditor.m @@ -225,11 +225,8 @@ static BOOL done_editing; fromView: nil]; point = [view convertPoint: point fromView: edit_view]; if ([(NSForm *)view getRow: &row column: &col forPoint: point] == NO) - { - NSLog(@"Internal Error: Could not get field entry to edit"); - row = 0; - col = 0; - } + return; + editCell = [(NSForm *)view cellAtRow: row column: col]; frame = [(NSForm *)view cellFrameAtRow: row column: col]; frame.origin.x += NSMinX([view frame]);