diff options
| author | Peter Penz <[email protected]> | 2009-02-11 21:27:36 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-02-11 21:27:36 +0000 |
| commit | be36d1c821ef78c09a0ac5737296a31c88c70133 (patch) | |
| tree | cdf3eb8c8d610aef08c9d27dd6fa5c14922bbd55 | |
| parent | 2f47863c68bb0ac0417eed76f713ced651a4908a (diff) | |
hide the tooltip when the context menu is opened in the columns view
BUG: 184053
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=924889
| -rw-r--r-- | src/dolphincolumnwidget.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dolphincolumnwidget.cpp b/src/dolphincolumnwidget.cpp index 3fbf92100..5ef86a29d 100644 --- a/src/dolphincolumnwidget.cpp +++ b/src/dolphincolumnwidget.cpp @@ -424,6 +424,10 @@ void DolphinColumnWidget::contextMenuEvent(QContextMenuEvent* event) clearSelection(); } + if (m_toolTipManager != 0) { + m_toolTipManager->hideTip(); + } + const QPoint pos = m_view->viewport()->mapFromGlobal(event->globalPos()); Q_ASSERT(m_view->m_controller->itemView() == this); m_view->m_controller->triggerContextMenuRequest(pos); |
