From 3e024ce5e6edfbe12cee994378a49bdbaa2e29e0 Mon Sep 17 00:00:00 2001 From: Casper Boemann Date: Mon, 16 Jul 2007 18:52:40 +0000 Subject: [PATCH] fix small visual error in upper right corner svn path=/trunk/KDE/kdebase/workspace/; revision=688743 --- clients/oxygen/oxygenclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/oxygen/oxygenclient.cpp b/clients/oxygen/oxygenclient.cpp index 6055372d4d..8a90b0f61f 100644 --- a/clients/oxygen/oxygenclient.cpp +++ b/clients/oxygen/oxygenclient.cpp @@ -568,7 +568,7 @@ void OxygenClient::paintEvent(QPaintEvent *e) painter.drawTiledPixmap(QRect(frame.width()-RFRAMESIZE, 0, RFRAMESIZE, splitY), tile, QPoint(frame.width()-RFRAMESIZE, 0)); - painter.fillRect(frame.width()-RFRAMESIZE, 0, RFRAMESIZE, frame.height(), color); + painter.fillRect(frame.width()-RFRAMESIZE, splitY, RFRAMESIZE, frame.height() - splitY, color); painter.fillRect(0, frame.height() - BFRAMESIZE, frame.width(), BFRAMESIZE, color);