extensions.st
changeset 19414 122250f80be9
parent 19411 5b4bc73d6e87
child 19458 03d0d43b52e8
--- a/extensions.st	Thu Jan 16 17:23:23 2020 +0100
+++ b/extensions.st	Fri Jan 17 17:51:09 2020 +0100
@@ -2445,7 +2445,11 @@
 
     v := HVScrollableView for:TextView.
     v autoHideScrollBars:true.
-    v scrolledView onChange:#visibility evaluate:[v scrolledView model isNil ifTrue:[self halt. v scrolledView model: holder]].
+    v scrolledView 
+        onChange:#visibility 
+        evaluate:[
+                v scrolledView model isNil ifTrue:[v scrolledView model: holder]
+        ].
     ^ self newInspector2Tab
         label: 'JSON';
         priority: 15;
@@ -2785,18 +2789,6 @@
 
 !Rectangle methodsFor:'inspecting'!
 
-inspectorExtraMenuOperations
-    "returns a string to be shown in the inspector's list"
-
-    ^ super inspectorExtraMenuOperations
-    , {
-        { 'Flash on Screen' . [Display rootView flashRectangle:self] } .
-        { 'Screenshot Area' . [(Image fromScreen:self) inspect] }
-    }
-! !
-
-!Rectangle methodsFor:'inspecting'!
-
 inspectorValueStringInListFor:anInspector
     "returns a string to be shown in the inspector's list"