diff -r 5d9fc3da65f1 -r ed46714ec203 SelectionInListModelView.st --- a/SelectionInListModelView.st Mon Jul 11 14:58:33 2016 +0200 +++ b/SelectionInListModelView.st Tue Jul 12 16:53:26 2016 +0200 @@ -1328,17 +1328,14 @@ enabled ifFalse:[^ self]. - (button == 1) ifTrue:[ + button == 1 ifTrue:[ ( (lnNr := self yVisibleToLineNr:y) notNil and:[(self at:lnNr ifAbsent:nil) notNil] ) ifTrue:[ - self selectedIndex == lnNr ifFalse:[ + self selectedIndex ~~ lnNr ifTrue:[ self breakPoint:#ca ]. self doubleClicked. -"/ doubleClickActionBlock notNil ifTrue:[ -"/ doubleClickActionBlock valueWithOptionalArgument:lnNr and:self. -"/ ]. ]. ^ self. ].