#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Sat, 27 Oct 2018 19:17:30 +0200
changeset 18496 74702babe6bb
parent 18495 14b932abbd8f
child 18497 82d65ac83ddd
#UI_ENHANCEMENT by cg class: Tools::Inspector2 changed: #menuSetMaxValueDisplayStringLength
Tools__Inspector2.st
--- a/Tools__Inspector2.st	Sat Oct 27 19:16:19 2018 +0200
+++ b/Tools__Inspector2.st	Sat Oct 27 19:17:30 2018 +0200
@@ -1311,7 +1311,8 @@
 menuSetMaxValueDisplayStringLength
     |s n|
 
-    s := Dialog request:'Set the max. length of displayed value strings (0 for unlimited):'
+    s := Dialog 
+            request:(resources string:'Set the max. length of displayed value strings (0 for unlimited):')
             initialAnswer:(InspectorView defaultMaxValueDisplayStringLength) printString.
     s notEmptyOrNil ifTrue:[
         n := Integer readFrom:s onError:[
@@ -1321,6 +1322,8 @@
         InspectorView defaultMaxValueDisplayStringLength:n.
         InspectorView allInstancesDo:[:i | i maxValueDisplayStringLength:nil].
     ].
+
+    "Modified: / 27-10-2018 / 19:16:00 / Claus Gittinger"
 !
 
 openDocumentation