fixed: characterPressed: ... on non editable column
authortm
Fri, 04 Jul 2003 10:05:19 +0200
changeset 2535 4df3f0a09b83
parent 2534 39f2ebf77c40
child 2536 c38f8c10dda3
fixed: characterPressed: ... on non editable column
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 $'
 ! !