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:
parent
3db33763cf
commit
eb7566eeb7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue