diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-10 15:07:56 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-08-10 15:07:56 +0200 |
commit | e9e94ec1c9b7ca214d6a7e04ed0c28c363b77957 (patch) | |
tree | 02e278c4b2b239c065b8baefd863f728592097d3 /src/bookmarks/bookmarkstreemodel.cpp | |
parent | Merge branch 'm155' (diff) | |
download | rekonq-e9e94ec1c9b7ca214d6a7e04ed0c28c363b77957.tar.xz |
- Fix bookmarks' text which is truncated in some places (new tab page, some dialogues, ...)
- Fix bookmark icons with the bookmark panel
BUG: 247196
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()) { |