Bug 62675 - There shouldn't be 2 tooltips when hovering over an item in Konqueror/KDesktop
Summary: There shouldn't be 2 tooltips when hovering over an item in Konqueror/KDesktop
Status: RESOLVED FIXED
Alias: None
Product: konqueror
Classification: Applications
Component: general (show other bugs)
Version: 3.1.3
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-08-14 21:06 UTC by Alex Radu
Modified: 2005-01-18 02:03 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alex Radu 2003-08-14 21:06:04 UTC
Version:           3.1.3 (using KDE KDE 3.1.3)
Installed from:    SuSE RPMs
OS:          Linux

When hovering over an item in the file manager there are 2 dialogs which should be combined into one. First there is one displaying the name of the item under the mouse and than there is a dialog box with information such as type, size and owner. There should be only one dialog which includes all this information, just like on the desktop.
Comment 1 Alex Radu 2003-08-14 21:07:05 UTC
Here is what I mean about the two dialogs. 
 
http://bugs.kde.org/attachment.cgi?id=2240&action=view 
Comment 2 Stephan Binner 2003-08-16 12:14:26 UTC
kdesktop uses libkonq 
Comment 3 Alex Radu 2003-08-16 19:02:29 UTC
That's strange because the dialog that came up when I was previewing something on 
the desktop included the name of the item, but in Konqueror it came up as 2 dialogs. 
Comment 4 Martin Koller 2004-11-21 22:02:14 UTC
CVS commit by mkoller: 

BUG: 62675
if the user wants our own tooltip, don't show the one from Qts ListView


  M +6 -3      konq_iconviewwidget.cc   1.304


--- kdebase/libkonq/konq_iconviewwidget.cc  #1.303:1.304
@@ -580,9 +580,12 @@ bool KonqIconViewWidget::initConfig( boo
     }
 
-
-    d->pFileTip->setOptions(m_pSettings->showFileTips() && QToolTip::isGloballyEnabled(),
+    bool on = m_pSettings->showFileTips() && QToolTip::isGloballyEnabled();
+    d->pFileTip->setOptions(on,
                             m_pSettings->showPreviewsInFileTips(),
                             m_pSettings->numFileTips());
 
+    // if the user wants our own tooltip, don't show the one from Qts ListView
+    setShowToolTips(!on);
+
     // Font settings
     QFont font( m_pSettings->standardFont() );
@@ -601,5 +604,5 @@ bool KonqIconViewWidget::initConfig( boo
     }
 
-    setIconTextHeight( m_bDesktop ? 2 : m_pSettings->iconTextHeight() );
+    setIconTextHeight( m_pSettings->iconTextHeight() );
 
     // Update icons if settings for preview icon size have changed


Comment 5 Alex Radu 2005-01-18 02:03:39 UTC
Thank you :)