InspectorView.st
changeset 1077 4c181d989586
parent 1040 5835207bcb3e
child 1078 e83674b278f9
--- a/InspectorView.st	Mon Mar 17 15:19:33 1997 +0100
+++ b/InspectorView.st	Mon Mar 17 18:20:08 1997 +0100
@@ -767,11 +767,16 @@
 showLast
     "user clicked on an instvar - show value in workspace"
 
-    self showSelection:(listView list size).
-    listView selection:(listView list size).
+    |idx|
+
+    idx := listView list size.
+    Object errorSignal catch:[
+        self showSelection:idx.
+        listView selection:idx.
+    ].
 
     "Created: 28.6.1996 / 15:06:38 / cg"
-    "Modified: 28.6.1996 / 15:34:08 / cg"
+    "Modified: 17.3.1997 / 17:23:52 / cg"
 !
 
 showSelection:lineNr
@@ -849,5 +854,5 @@
 !InspectorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.59 1997-02-25 19:18:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.60 1997-03-17 17:20:08 cg Exp $'
 ! !