Helene Bilbo wrote
when i open a Morph via openInWindow in a SystemWindow it's color is overriden by the SystemWindow or the UITheme (i suppose). See attachment for illustration (the Morph is indeed displayed in the Window, but white).
I found the cause for this behaviour here:
Morph>>initialColorInSystemWindow: aSystemWindow
"Answer the colour the receiver should be when added to a SystemWindow."
^Color white
which is called by:
SystemWindow>>addMorph: aMorph fullFrame: aLayoutFrame
Can anyone explain, why this is here?