diff options
Diffstat (limited to 'src/bookmarks/bookmarkstreeitem.hpp')
-rw-r--r-- | src/bookmarks/bookmarkstreeitem.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkstreeitem.hpp b/src/bookmarks/bookmarkstreeitem.hpp index 91d4ab2a..df865014 100644 --- a/src/bookmarks/bookmarkstreeitem.hpp +++ b/src/bookmarks/bookmarkstreeitem.hpp @@ -42,7 +42,7 @@ public: { auto *action = new QAction(m_icon, m_data.title, sender); action->setIconVisibleInMenu(true); - action->setToolTip(m_data.description.isEmpty() ? m_data.title : m_data.description); + action->setToolTip(tooltip()); QObject::connect(action, &QAction::triggered, sender, [this, sender, type]() { emit sender->loadUrl(m_data.href, type); }); return action; |