Hi,
There seems to be a problem with simple the rubric presentation in Moose 5.0. TextColor attributes are overridden with default text color from the theme when the morph is created.
There is a flag in the morph creation code that says that the code needs reviewing in Pharo 4.0. So removing two lines below after the flag resolve this issue:
GLMMorphicRubricTextRenderer>>morph |morph| morph := RubScrolledTextMorph new getSelectionSelector: #primarySelectionInterval; model: textModel; color: Smalltalk ui theme backgroundColor; textFont: StandardFonts defaultFont; yourself. self flag: 'Temporary solution until Moose moves to Pharo 4'. (Smalltalk ui theme class canPerform: #textColor) ifTrue: [ morph textColor: Smalltalk ui theme textColor ]. ^ morph
Should I commit a fix removing the flagged lines? Should I create a new branch for the fix?