Summary: | Menu separators in Plastik theme are too short | ||
---|---|---|---|
Product: | [Unmaintained] kdelibs | Reporter: | Jonathan Rawle <bugs.kde.org> |
Component: | kstyle | Assignee: | Sandro Giessl <sgiessl> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | RedHat Enterprise Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jonathan Rawle
2004-02-27 13:41:18 UTC
CVS commit by giessl: oups. CCMAIL: 76269-done@bugs.kde.org M +2 -2 plastik.cpp 1.61 --- kdeartwork/styles/plastik/plastik.cpp #1.60:1.61 @@ -2299,7 +2299,7 @@ void PlastikStyle::drawControl(ControlEl { p->setPen( cg.mid() ); - p->drawLine( r.x()+5, r.y() + 1, r.width()-10, r.y() + 1 ); + p->drawLine( r.x()+5, r.y() + 1, r.right()-5, r.y() + 1 ); p->setPen( cg.light() ); - p->drawLine( r.x()+5, r.y() + 2, r.width()-10 , r.y() + 2 ); + p->drawLine( r.x()+5, r.y() + 2, r.right()-5 , r.y() + 2 ); break; } |