use of org.compiere.plaf.CompiereColor in project adempiere by adempiere.
the class CPanel method setBackground.
// init
/**************************************************************************
* Set Background - ignored by UI -
* @param bg ignored
*/
public void setBackground(Color bg) {
if (bg.equals(getBackground()))
return;
super.setBackground(bg);
// ignore calls from javax.swing.LookAndFeel.installColors(LookAndFeel.java:61)
//if (!Trace.getCallerClass(1).startsWith("javax"))
setBackgroundColor(new CompiereColor(bg));
}
Aggregations