SVN commit 434666 by mpyne: Use parent widget's background color for the flicker free label instead of QLabel's background color, which can apparently be unset if you're using the "Check" style. M +1 -1 systemtray.cpp --- trunk/KDE/kdemultimedia/juk/systemtray.cpp #434665:434666 @@ -54,7 +54,7 @@ QLabel(text, parent, name) { m_textColor = paletteForegroundColor(); - m_bgColor = paletteBackgroundColor(); + m_bgColor = parentWidget()->paletteBackgroundColor(); setBackgroundMode(NoBackground); }