SVN commit 896099 by hein: Fix a regression from the background painting changes in 2.9.4 that cause splitter handles between terminals to appear in the user-configured background color. M +7 -0 ChangeLog M +1 -0 app/splitter.cpp --- trunk/extragear/utils/yakuake/ChangeLog #896098:896099 @@ -1,3 +1,10 @@ +Changes since 2.9.5: +* Fixed linking with the new gold linker in binutils. +* Fixed a regression from the background painting changes in 2.9.4 that + caused splitter handles between terminals to appear in the user-confi- + gured background color. + + Changes in 2.9.4: * Added a new Oxygen-style application icon made by Nuno Pinheiro. In addi- tion to fitting much better into KDE 4 visually, it's now also available --- trunk/extragear/utils/yakuake/app/splitter.cpp #896098:896099 @@ -24,6 +24,7 @@ Splitter::Splitter(Qt::Orientation orientation, QWidget* parent) : QSplitter(orientation, parent) { + setAutoFillBackground(true); setOpaqueResize(false); }