Browse Source

Open the inspector on use

JohnnyT 10 years ago
parent
commit
28d9b6ceea
2 changed files with 4 additions and 2 deletions
  1. 3 2
      js/IDE.js
  2. 1 0
      st/IDE.st

+ 3 - 2
js/IDE.js

@@ -5023,13 +5023,14 @@ return smalltalk.withContext(function($ctx1) {
 var $2,$3,$1;
 $2=self._new();
 _st($2)._inspect_(anObject);
+_st($2)._open();
 $3=_st($2)._yourself();
 $1=$3;
 return $1;
 }, function($ctx1) {$ctx1.fill(self,"inspect:",{anObject:anObject},smalltalk.Inspector.klass)})},
 args: ["anObject"],
-source: "inspect: anObject\x0a\x09^self new\x0a\x09\x09inspect: anObject;\x0a\x09\x09yourself",
-messageSends: ["inspect:", "new", "yourself"],
+source: "inspect: anObject\x0a\x09^self new\x0a\x09\x09inspect: anObject;\x0a\x09\x09open;\x0a\x09\x09yourself",
+messageSends: ["inspect:", "new", "open", "yourself"],
 referencedClasses: []
 }),
 smalltalk.Inspector.klass);

+ 1 - 0
st/IDE.st

@@ -1732,6 +1732,7 @@ updateVariablesList
 inspect: anObject
 	^self new
 		inspect: anObject;
+		open;
 		yourself
 !