CVS commit by ariya: match with the new highlight color used in column/row headers M +4 -1 kspread_cell.cc 1.695 --- koffice/kspread/kspread_cell.cc #1.694:1.695 @@ -2275,5 +2275,8 @@ void KSpreadCell::paintBackground( QPain // Determine the correct background color if ( selected ) - painter.setBackgroundColor( defaultColorGroup.highlight() ); + { + QColor c = defaultColorGroup.highlight().light(); + painter.setBackgroundColor( c ); + } else { QColor bg( backgroundColor );