summaryrefslogtreecommitdiffstats
path: root/kdm/kfrontend/themer/kdmitem.cpp
diff options
context:
space:
mode:
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;
}