┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Pescosta <[email protected]>2014-01-20 17:41:44 +0100
committerEmmanuel Pescosta <[email protected]>2014-01-20 17:41:44 +0100
commitf90fa0b38a6ec89b5ea64881793113bfb6d69db7 (patch)
tree63be9ae36a8afefb38c93960bf7c5fbaf670fe9d
parent4ff27ee637f18262bbd09c13156a3cad17636c51 (diff)
Don't show tooltips while inline-renaming.
FIXED-IN: 4.12.2 REVIEW: 115146 BUG: 330126
-rw-r--r--src/views/dolphinview.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 1416bb6df..303731c6d 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -649,6 +649,8 @@ void DolphinView::renameSelectedItems()
const int index = m_model->index(items.first());
m_view->editRole(index, "text");
+ hideToolTip();
+
connect(m_view, SIGNAL(roleEditingFinished(int,QByteArray,QVariant)),
this, SLOT(slotRoleEditingFinished(int,QByteArray,QVariant)));
} else {