Fix off by one border rendering bug.
svn path=/trunk/KDE/kdebase/workspace/; revision=676429
This commit is contained in:
parent
c5e1b4b204
commit
d3fd417bf0
1 changed files with 3 additions and 1 deletions
|
@ -238,7 +238,9 @@ WebClient::paintEvent(QPaintEvent * pe)
|
|||
|
||||
p.setClipRegion(pe->region() - titleRect);
|
||||
|
||||
p.drawRect(widget()->rect());
|
||||
QRect r(widget()->rect());
|
||||
r.adjust(0, 0, -1, -1);
|
||||
p.drawRect(r);
|
||||
|
||||
p.setClipRegion(pe->region());
|
||||
|
||||
|
|
Loading…
Reference in a new issue