summaryrefslogtreecommitdiff
path: root/src/bookmarks/bookmarkstreeitem.hpp
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-09-24 21:48:39 +0300
committeraqua <aqua@iserlohn-fortress.net>2022-09-24 21:48:39 +0300
commitfee55330b612721e0098b93445a533e95865a779 (patch)
tree88616e3c5b8e2e29700a3345a59e70b63767ac8d /src/bookmarks/bookmarkstreeitem.hpp
parentAdd validate_xml script (diff)
downloadrekonq-fee55330b612721e0098b93445a533e95865a779.tar.xz
Add BookmarksContextMenustagingRKNQ-2-bookmarks
Diffstat (limited to 'src/bookmarks/bookmarkstreeitem.hpp')
-rw-r--r--src/bookmarks/bookmarkstreeitem.hpp2
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;