Coding in the evening results in incorrect boolean checks.
svn path=/trunk/KDE/kdebase/workspace/; revision=1054505
This commit is contained in:
parent
df995efba0
commit
420c00881c
1 changed files with 1 additions and 1 deletions
|
@ -751,7 +751,7 @@ void AuroraeClient::paintEvent(QPaintEvent *event)
|
|||
// restrict painting on the decoration - no need to paint behind the window
|
||||
int left, right, top, bottom;
|
||||
decoration()->borders(left, right, top, bottom);
|
||||
if (!compositingActive() && !transparentRect().isNull()) {
|
||||
if (!compositingActive() || (compositingActive() && !transparentRect().isNull())) {
|
||||
// only clip when compositing is not active and we don't extend into the client
|
||||
painter.setClipping(true);
|
||||
painter.setClipRect(0, 0,
|
||||
|
|
Loading…
Reference in a new issue