Change playlist tabbar favorite tooltip

This commit is contained in:
Jonas Kvinge 2021-05-20 17:12:28 +02:00
parent ef72b3273e
commit 264d47caf4
1 changed files with 1 additions and 1 deletions

View File

@ -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;