Bug 100601

Summary: Display of meta-data previews (tooltips) in tree-view doesn't adhere to protocol settings
Product: [Applications] konqueror Reporter: Jeremy Volkman <jvolkman>
Component: generalAssignee: Konqueror Developers <konq-bugs>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Gentoo Packages   
OS: Linux   
Latest Commit: Version Fixed In:

Description Jeremy Volkman 2005-03-01 23:33:08 UTC
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).
Comment 1 Pascal Létourneau 2005-03-05 20:43:54 UTC
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