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
This commit is contained in:
Andrew Lake 2009-08-08 15:36:40 +00:00
parent 3db33763cf
commit eb7566eeb7

View file

@ -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;
}