Sync r926586 from Oxygen.

svn path=/trunk/KDE/kdebase/workspace/; revision=980079
icc-effect-5.14.5
Lucas Murray 2009-06-11 05:22:28 +00:00
parent 74cb4ddd81
commit ac1bd1e6ec
1 changed files with 4 additions and 1 deletions

View File

@ -133,7 +133,10 @@ int OxygenClient::layoutMetric(LayoutMetric lm, bool respectWindowState, const K
if (respectWindowState && maximized) {
return 0;
} else {
return BFRAMESIZE;
if (lm == LM_BorderBottom)
return BFRAMESIZE + 2;
else
return 2;
}
}