Reduce border thickness

svn path=/trunk/KDE/kdebase/workspace/; revision=926586
This commit is contained in:
Huynh Huu Long 2009-02-15 19:14:44 +00:00
parent 0d6f29c18d
commit 37f938b841

View file

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