#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Wed, 26 Jun 2019 23:25:11 +0200
changeset 6616 c0a78fe7ba09
parent 6615 d21fe40f76a5
child 6617 129dbcededf3
#UI_ENHANCEMENT by cg class: Workspace changed: #initialize
Workspace.st
--- a/Workspace.st	Wed Jun 26 23:23:09 2019 +0200
+++ b/Workspace.st	Wed Jun 26 23:25:11 2019 +0200
@@ -1553,7 +1553,7 @@
 initialize
     super initialize.
 
-    autoIndent := UserPreferences current autoIndentInCodeView.
+    autoIndent := (UserPreferences current autoIndentInCodeView) asValue.
     scrollWhenUpdating := #beginOfText.
     showMatchingParenthesis := true.
     allowValueDrop := true.
@@ -1567,6 +1567,7 @@
     self initializeDragAndDrop.
 
     "Modified: / 28-11-2006 / 16:11:55 / cg"
+    "Modified: / 26-06-2019 / 23:18:49 / Claus Gittinger"
 !
 
 initializeDoITAction