2017-01-30 15:29 GMT+01:00 Denis Kudriashov <dionisiydk@gmail.com>:
You will see new Calypso-Plugins-Critic-Browser package. I add decorators support to TextEditorTool. And critic plugin just adds CriticDecorator into required tools.��
Sadly it is not working. Critiques are not shown somehow.��
I leave it for you to fix it. Probably reason is that full tool morph is prepared in background. So critiques are added when morph is not in World.��
I hope you can find solution.

And to get working critiques disable background tabs:

ClyBrowserTabTool>>addInto: aBrowser
containerTab := TabMorph
label: self defaultTitle
icon: self defaultIcon
morph: self.
self build.
containerTab when: #tabDeleted send: #tabDeleted to: self.
containerTab model: self.
aBrowser addTab: containerTab

So question why it is not working when morph is built from background process?