From f760d3688184cb1d18b4e8e5d582f9adc70376b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Mon, 19 Jan 2009 11:51:46 +0000 Subject: [PATCH] Fix buttons, patch by Knut Johansson . svn path=/trunk/KDE/kdebase/workspace/; revision=913430 --- clients/laptop/laptopclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/laptop/laptopclient.cpp b/clients/laptop/laptopclient.cpp index 224847fcbc..3c0446a605 100644 --- a/clients/laptop/laptopclient.cpp +++ b/clients/laptop/laptopclient.cpp @@ -114,7 +114,7 @@ static void drawButtonFrame(QPixmap *pix, const QPalette &g, bool sunken) } else{ p.setPen(g.color(QPalette::Dark )); - p.drawRect(0, 0, w-1, h-1); + p.drawRect(0, 0, w-2, h-2); p.setPen(g.color(QPalette::Light)); p.drawLine(x2, 0, x2, y2); p.drawLine(0, y2, x2, y2);