diff --git a/src/filewidgets/kfileplacesmodel.cpp b/src/filewidgets/kfileplacesmodel.cpp --- a/src/filewidgets/kfileplacesmodel.cpp +++ b/src/filewidgets/kfileplacesmodel.cpp @@ -107,6 +107,11 @@ KFilePlacesItem::createSystemBookmark(d->bookmarkManager, QStringLiteral("Home"), I18N_NOOP2("KFile System Bookmarks", "Home"), QUrl::fromLocalFile(QDir::homePath()), QStringLiteral("user-home")); + if (KProtocolInfo::isKnownProtocol(QStringLiteral("tags"))) { + KFilePlacesItem::createSystemBookmark(d->bookmarkManager, + QStringLiteral("Tags"), I18N_NOOP2("KFile System Bookmarks", "Tags"), + QUrl(QStringLiteral("tags:/")), QStringLiteral("tag")); + } KFilePlacesItem::createSystemBookmark(d->bookmarkManager, QStringLiteral("Network"), I18N_NOOP2("KFile System Bookmarks", "Network"), QUrl(QStringLiteral("remote:/")), QStringLiteral("network-workgroup"));