From: Pavel V. <va...@us...> - 2002-08-16 13:06:55
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/views In directory usw-pr-cvs1:/tmp/cvs-serv10826 Modified Files: AllocHistogramTable.java Log Message: tiny fix Index: AllocHistogramTable.java =================================================================== RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/views/AllocHistogramTable.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** AllocHistogramTable.java 8 Aug 2002 23:32:42 -0000 1.7 --- AllocHistogramTable.java 16 Aug 2002 13:06:39 -0000 1.8 *************** *** 190,200 **** bar.setBackground( Color.white ); bar.setBorderPainted( false ); ! if (isBordered) { ! if (isSelected) { ! bar.setBackground( table.getSelectionBackground() ); ! } else { ! bar.setBackground( table.getBackground() ); ! } } return this; --- 190,199 ---- bar.setBackground( Color.white ); bar.setBorderPainted( false ); ! if (isSelected) { ! bar.setBackground( table.getSelectionBackground() ); ! } else { ! bar.setBackground( table.getBackground() ); } + return this; |