From eb7566eeb77d42da501a7b933d069f8a3af9d593 Mon Sep 17 00:00:00 2001 From: Andrew Lake Date: Sat, 8 Aug 2009 15:36:40 +0000 Subject: [PATCH] Reduce minimum bottom border size to look proportional to sides when size >= Normal. Bottom corner rounding is unaffected. svn path=/trunk/KDE/kdebase/workspace/; revision=1008893 --- 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 b97f68a3d1..3b6bc91802 100644 --- a/clients/oxygen/oxygenclient.cpp +++ b/clients/oxygen/oxygenclient.cpp @@ -143,7 +143,7 @@ int OxygenClient::layoutMetric(LayoutMetric lm, bool respectWindowState, const K // Even for thin borders (2px wide) we want to preserve // the rounded corners having a minimum height of 7px if (lm == LM_BorderBottom) { - return qMax(frameWidth, 7); + return qMax(frameWidth, 4); } else { return frameWidth; }