From 8009b5ae9cb64c2f41e14afa82da8ca2744ab871 Mon Sep 17 00:00:00 2001 From: Andrew Lake Date: Sat, 8 Aug 2009 16:12:00 +0000 Subject: [PATCH] Reduce minimum bottom border size to look proportional to sides when size >= Normal. Bottom corner rounding is unaffected. svn path=/branches/KDE/4.3/kdebase/workspace/; revision=1008903 --- 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 f1445aeaa4..9bfb25e82b 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; }