I���ve tried this:
retrieveContents ] timeToRun 0:00:00:02.587
[
GTInspector setGTInspectorEnabledStatus: false
retrieveContents) inspect ] timeToRun 0:00:00:02.877
[ GTInspector setGTInspectorEnabledStatus: true.
retrieveContents) inspect ] timeToRun 0:00:00:50.129
[
RubScrolledTextMorph new
openInWorld;
retrieveContents) ] timeToRun 0:00:00:04.543
So, Rubric takes 2 seconds to open and show this big text,
the basic inspector takes 0.3 seconds to open but it shows the first characters only.
GTInspector takes 50 seconds.
I think the problems comes from GTInspector itself.
From MorphTreeMorph maybe which is used by GTInspector
Cheers
Alain
Hi,
It takes such a long time because for String objects the default presentation shows the content of the String. In this case the string has 10 million characters which Rubric takes some time to display.
Given you use case it could make sense to limit by default the size of content that is displayed and when this happens add an action for showing the entire content.
Cheers,
Andrei