From e9e94ec1c9b7ca214d6a7e04ed0c28c363b77957 Mon Sep 17 00:00:00 2001 From: Yoann Laissus Date: Tue, 10 Aug 2010 15:07:56 +0200 Subject: - Fix bookmarks' text which is truncated in some places (new tab page, some dialogues, ...) - Fix bookmark icons with the bookmark panel BUG: 247196 --- src/bookmarks/bookmarkstreemodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bookmarks/bookmarkstreemodel.cpp') 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()) { -- cgit v1.2.1