diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-27 23:57:48 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-27 23:57:48 +0000 |
commit | f62a335a9aa23c9a10a9768caf5a9c2eae922861 (patch) | |
tree | 9583ca8596d900e6ae91cb4b6d9bd206b63daf7f /kicker | |
parent | 6009a3e92e25428830047bd4dd8da300135f8c85 (diff) | |
download | tdebase-f62a335a9aa23c9a10a9768caf5a9c2eae922861.tar.gz tdebase-f62a335a9aa23c9a10a9768caf5a9c2eae922861.zip |
Move krootbacking executable from kdeartwork to kdebase
Reenable HAL media manager
Fix system tray with ARGB visuals (again)
Beautify logout process
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1249834 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker')
-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()) ); + } } } |