fix lower color, thanks for keeping me honest boemann :-)

svn path=/trunk/KDE/kdebase/workspace/; revision=689245
icc-effect-5.14.5
Matthew Woehlke 2007-07-17 23:50:33 +00:00
parent 1768ac296c
commit ca0838643d
1 changed files with 3 additions and 3 deletions

View File

@ -591,14 +591,14 @@ void OxygenClient::paintEvent(QPaintEvent *e)
painter.drawTiledPixmap(QRect(0, 0, frame.width(), TITLESIZE + TFRAMESIZE), tile);
painter.drawTiledPixmap(QRect(0, 0, LFRAMESIZE, splitY), tile);
painter.fillRect(0, splitY, LFRAMESIZE, frame.height() - splitY, color);
painter.fillRect(0, splitY, LFRAMESIZE, frame.height() - splitY, OxygenHelper::backgroundBottomColor(color));
painter.drawTiledPixmap(QRect(frame.width()-RFRAMESIZE, 0,
RFRAMESIZE, splitY), tile,
QPoint(frame.width()-RFRAMESIZE, 0));
painter.fillRect(frame.width()-RFRAMESIZE, splitY, RFRAMESIZE, frame.height() - splitY, color);
painter.fillRect(frame.width()-RFRAMESIZE, splitY, RFRAMESIZE, frame.height() - splitY, OxygenHelper::backgroundBottomColor(color));
painter.fillRect(0, frame.height() - BFRAMESIZE, frame.width(), BFRAMESIZE, color);
painter.fillRect(0, frame.height() - BFRAMESIZE, frame.width(), BFRAMESIZE, OxygenHelper::backgroundBottomColor(color));
int radialW = qMin(600, frame.width());
tile = TileCache::instance()->radialGradient(color, radialW);