diff options
author | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-20 12:59:24 +0200 |
---|---|---|
committer | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-20 13:01:03 +0200 |
commit | 9aacb944ef933f0a51eb2d2a66653c75e214f3c8 (patch) | |
tree | ed180895d58227ddd750b604a427858dcaffa0ba /src/bookmarks/bookmarkstreemodel.cpp | |
parent | Bookmarks panel code reordered (diff) | |
download | rekonq-9aacb944ef933f0a51eb2d2a66653c75e214f3c8.tar.xz |
Fixed tooltip in the bookmarks panel
Diffstat (limited to 'src/bookmarks/bookmarkstreemodel.cpp')
-rw-r--r-- | src/bookmarks/bookmarkstreemodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/bookmarkstreemodel.cpp b/src/bookmarks/bookmarkstreemodel.cpp index 8e95a615..7f0bf66f 100644 --- a/src/bookmarks/bookmarkstreemodel.cpp +++ b/src/bookmarks/bookmarkstreemodel.cpp @@ -64,9 +64,9 @@ QVariant BtmItem::data(int role) const { QString tooltip = ""; - if (!m_kbm.text().isEmpty()) + if (!m_kbm.fullText().isEmpty()) { - tooltip += m_kbm.text(); + tooltip += m_kbm.fullText(); } if (m_kbm.isGroup()) { |