/** Set the panel title background color from the manifestation info
* @param newTitleFontBackgroundColor
*/
public void setTitleFontBackgroundColor(Integer newTitleFontBackgroundColor) {
if (this.titlePanel.isVisible()) {
MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
manifestInfo.setPanelTitleFontBackgroundColor(newTitleFontBackgroundColor);
setTitleFromManifestation(manifestInfo);
revalidate();
notifyTitleChanged();
}
}