diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-11 00:17:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-11 00:17:29 +0200 |
commit | 950f88fc0d4fea8702167b1b1ae4bc387b8d0821 (patch) | |
tree | 510ea5867589da5414367afa9e687354a0977c3a /src/bookmarks/bookmarkstreemodel.cpp | |
parent | Merge commit 'refs/merge-requests/160' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | - Fix bookmarks' text which is truncated in some places (new tab page, some d... (diff) | |
download | rekonq-950f88fc0d4fea8702167b1b1ae4bc387b8d0821.tar.xz |
Merge commit 'refs/merge-requests/161' of git://gitorious.org/rekonq/mainline into m161
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 b58b66e9..7063bf9b 100644 --- a/src/bookmarks/bookmarkstreemodel.cpp +++ b/src/bookmarks/bookmarkstreemodel.cpp @@ -69,9 +69,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()) { |