diff options
Diffstat (limited to 'kicker/applets/systemtray/systemtrayapplet.cpp')
-rw-r--r-- | kicker/applets/systemtray/systemtrayapplet.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kicker/applets/systemtray/systemtrayapplet.cpp b/kicker/applets/systemtray/systemtrayapplet.cpp index 97d1cd55c..9be1bbfe2 100644 --- a/kicker/applets/systemtray/systemtrayapplet.cpp +++ b/kicker/applets/systemtray/systemtrayapplet.cpp @@ -1170,7 +1170,11 @@ void TrayEmbed::setBackground() { XClearArea(x11Display(), embeddedWinId(), 0, 0, 0, 0, True); - ensureBackgroundSet(); + if (pbg) + { + ensureBackgroundSet(); + TQTimer::singleShot( 250, this, SLOT(ensureBackgroundSet()) ); + } } } |