I am opening the widgets like so:
openWidget: widget titled: title
self call: (PRCurrentContext use: self during: [
((widget)
context;
addDecoration: (WAWindowDecoration new
title: title);
yourself)
]).
Mhh, this certainly does not work, since the component is called
outside the scope of the dynamic-variable. Thus it should work if
you move the dynamic-variable outside the call:
openWidget: widget titled: title
PRCurrentContext use: self during: [
self call: (widget
context;
addDecoration: (WAWindowDecoration new
title: title;
yourself);
yourself) ]
I attempted the fix you suggested, but no luck.