summaryrefslogtreecommitdiffstats
path: root/kdm/kfrontend/themer/kdmitem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 02:23:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 02:23:49 +0000
commitd201c32d275c43583155ce843aa737ac57321671 (patch)
tree91866acb2a54c26c40a1450cde70d23d2e0b2a9f /kdm/kfrontend/themer/kdmitem.cpp
parent88a160cd940c7cce181e512f96e4de48d899e431 (diff)
downloadtdebase-d201c32d275c43583155ce843aa737ac57321671.tar.gz
tdebase-d201c32d275c43583155ce843aa737ac57321671.zip
* Allow Konqueror to compile with new libs-provided networkstatusindicator
* KDM fixes git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1172005 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdm/kfrontend/themer/kdmitem.cpp')
-rw-r--r--kdm/kfrontend/themer/kdmitem.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/kdm/kfrontend/themer/kdmitem.cpp b/kdm/kfrontend/themer/kdmitem.cpp
index d47c0242d..e8be05923 100644
--- a/kdm/kfrontend/themer/kdmitem.cpp
+++ b/kdm/kfrontend/themer/kdmitem.cpp
@@ -283,13 +283,17 @@ KdmItem::paint( TQPainter *p, const TQRect &rect )
return;
if (myWidget || (myLayoutItem && myLayoutItem->widget())) {
- // KListView because it's missing a Q_OBJECT
- if ( myWidget && myWidget->isA( "KListView" ) ) {
- TQPixmap copy( myWidget->size() );
- kdDebug() << myWidget->geometry() << " " << area << " " << myWidget->size() << endl;
- bitBlt( &copy, TQPoint( 0, 0), p->device(), myWidget->geometry(), Qt::CopyROP );
- myWidget->setPaletteBackgroundPixmap( copy );
- }
+ // KListView because it's missing a Q_OBJECT'
+ // FIXME: This is a nice idea intheory, but in practice it is
+ // very confusing for the user not to see then empty list box
+ // delineated from the rest of the greeter.
+ // Maybe set a darker version of the background instead of an exact copy?
+// if ( myWidget && myWidget->isA( "KListView" ) ) {
+// TQPixmap copy( myWidget->size() );
+// kdDebug() << myWidget->geometry() << " " << area << " " << myWidget->size() << endl;
+// bitBlt( &copy, TQPoint( 0, 0), p->device(), myWidget->geometry(), Qt::CopyROP );
+// myWidget->setPaletteBackgroundPixmap( copy );
+// }
return;
}