class: TextView
authorClaus Gittinger <cg@exept.de>
Sun, 12 Jul 2015 10:29:54 +0200
changeset 5374 ad599b69af13
parent 5373 a95a624e0ae9
child 5375 7ecf6ed7ef95
class: TextView added: #highlightLineSpacing
TextView.st
--- a/TextView.st	Sun Jul 12 10:29:43 2015 +0200
+++ b/TextView.st	Sun Jul 12 10:29:54 2015 +0200
@@ -2683,6 +2683,14 @@
     "Created: 22.5.1996 / 12:18:34 / cg"
 !
 
+highlightLineSpacing
+    "true if the spacing between lines is to be drawn with selected color,
+     false if it remains white.
+     false for selection in list views; true for edit/text views"
+
+    ^ true
+!
+
 isClosingParenthesis:ch
     ((parenthesisSpecification at:#close) includes:ch) ifTrue:[^ true].
     ^ ')]}' includes:ch
@@ -4944,11 +4952,11 @@
 !TextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.393 2015-03-25 19:19:48 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg/TextView.st,v 1.393 2015-03-25 19:19:48 cg Exp $'
+    ^ '$Header$'
 ! !