From kde-commits Fri Dec 12 14:08:30 2008 From: Eike Hein Date: Fri, 12 Dec 2008 14:08:30 +0000 To: kde-commits Subject: extragear/utils/yakuake Message-Id: <1229090910.962433.24120.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122909092009800 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); }