Hallo everyone,
last week, our project did a CC-Update from Februar release. Upon starting our web application, we had some unfamiliar style issues as the font wasn't the same color as before the update.
Analysing the issue, there is following behavior:
Some labels refer to a particular style which modifies the attribute foreground (foreground = Y) . Additionally, those labels have a variable linked to the foreground attribute.
Code:
public String getForeground() {
return hasRight ? X : null;
}
Before the CC-Update, the foreground were either X if hasRight had been equal to true or Y when the method had returned null. After the update, the foreground seems to be as if no style was applied.
In other words, when null is returned, the style is reset completely (new behavior) and no longer refers to the style definition (old). Is this intended behavior?
Regards,
Christian