# HG changeset patch # User tm # Date 1057305919 -7200 # Node ID 4df3f0a09b83bfac24f0b57134169fdf4dc48e8b # Parent 39f2ebf77c40644fd01d700f193abdc93f43f01b fixed: characterPressed: ... on non editable column diff -r 39f2ebf77c40 -r 4df3f0a09b83 DSVColumnView.st --- a/DSVColumnView.st Wed Jul 02 17:22:17 2003 +0200 +++ b/DSVColumnView.st Fri Jul 04 10:05:19 2003 +0200 @@ -2065,6 +2065,8 @@ "/ ^ self "/ ]. colNr := self findFirstColumnWithStringFrom:1 to:lsize. + colNr isNil ifTrue:[ ^ self ]. + rowNr := self lastIndexSelected. column := self columnAt:colNr. found := 0. @@ -3872,5 +3874,5 @@ !DSVColumnView class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.170 2003-06-11 08:33:27 cg Exp $' + ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.171 2003-07-04 08:05:19 tm Exp $' ! !