ContextInspectorView.st
changeset 18564 98b8b5c62f99
parent 18563 fe2a123360be
child 18582 a339eaac383c
--- a/ContextInspectorView.st	Sat Jan 26 17:01:14 2019 +0100
+++ b/ContextInspectorView.st	Sat Jan 26 17:09:04 2019 +0100
@@ -729,6 +729,17 @@
     "Modified: / 26-01-2019 / 16:52:25 / Claus Gittinger"
 ! !
 
+!ContextInspectorView methodsFor:'selection'!
+
+showSelection:lineNr
+    "user clicked on an instvar - show value in workspace"
+
+    (listView at:lineNr) isText ifTrue:[^ self].
+    ^ super showSelection:lineNr.
+
+    "Created: / 26-01-2019 / 17:06:11 / Claus Gittinger"
+! !
+
 !ContextInspectorView methodsFor:'user actions'!
 
 hideTemporaries