From 264d47caf4bd18e484d0057b787ddd8ebcd2a77f Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 20 May 2021 17:12:28 +0200 Subject: [PATCH] Change playlist tabbar favorite tooltip --- src/playlist/playlisttabbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playlist/playlisttabbar.cpp b/src/playlist/playlisttabbar.cpp index d59b27067..9e248ed0d 100644 --- a/src/playlist/playlisttabbar.cpp +++ b/src/playlist/playlisttabbar.cpp @@ -328,7 +328,7 @@ void PlaylistTabBar::InsertTab(const int id, const int index, const QString &tex setTabData(index, id); setTabToolTip(index, text); FavoriteWidget *widget = new FavoriteWidget(id, favorite); - widget->setToolTip(tr("Click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar")); + widget->setToolTip(tr("Double-click here to favorite this playlist so it will be saved and remain accessible through the \"Playlists\" panel on the left side bar")); QObject::connect(widget, &FavoriteWidget::FavoriteStateChanged, this, &PlaylistTabBar::PlaylistFavorited); setTabButton(index, QTabBar::LeftSide, widget); suppress_current_changed_ = false;