Update of /cvsroot/squirrel-sql/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8403
Modified Files:
CellComponentFactory.java
Log Message:
show selected background color
Index: CellComponentFactory.java
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/fw/src/net/sourceforge/squirrel_sql/fw/datasetviewer/cellcomponent/CellComponentFactory.java,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** CellComponentFactory.java 14 Apr 2004 18:26:46 -0000 1.22
--- CellComponentFactory.java 11 May 2004 14:26:57 -0000 1.23
***************
*** 260,263 ****
--- 260,264 ----
}
+
// if text cannot be edited in the cell but can be edited in
// the popup, show that by changing the text colors.
***************
*** 270,277 ****
}
else {
! // since the previous entry might have changed the color,
! // we need to reset the color back to default value for table cells.
! setBackground(table.getBackground());
! }
return label;
--- 271,283 ----
}
else {
! // since the previous entry might have changed the color,
! // we need to reset the color back to default value for table cells,
! // taking into account whether the cell is selected or not.
! if (isSelected)
! setBackground(table.getSelectionBackground());
! else
! setBackground(table.getBackground());
! }
!
return label;
|