Version: (using KDE KDE 3.4.0) Installed from: Gentoo Packages Compiler: gcc 3.3.4 OS: Linux If I change the settings under "Previews & Metadata" to not show previews on a certain protocol (in my experience, smb:/), previews will be disabled in both the file tooltips and the file icons while in Icon View. However, in Tree View, previews are shown in the file tooltips regardless of the protocol enable/disable settings (however, the "maximum file size" setting seems to be obeyed).
CVS commit by pletourn: Obey preview settings BUG:100601 M +1 -0 konq_listviewwidget.cc 1.267.2.1 --- kdebase/konqueror/listview/konq_listviewwidget.cc #1.267:1.267.2.1 @@ -497,4 +497,5 @@ void KonqBaseListViewWidget::contentsMou QRect rect( viewportToContents( vp ), QSize(20, item->height()) ); m_fileTip->setItem( item->item(), rect, item->pixmap( 0 ) ); + m_fileTip->setPreview( KGlobalSettings::showFilePreview( item->item()->url() ) ); } else