From b78e55a50c55dc5f4b168ac2678eea069b8b533a Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 20 Jan 2022 15:39:29 -0800 Subject: [PATCH] Playlist View: Fix status message tooltip --- Playlist/PlaylistController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index 2841007d7..d35128716 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -313,7 +313,7 @@ static inline void dispatch_sync_reentrant(dispatch_queue_t queue, dispatch_bloc if (cellView.textField.intrinsicContentSize.width > cellView.textField.frame.size.width - 8) cellView.textField.toolTip = cellText; else - cellView.textField.toolTip = [pe status]; + cellView.textField.toolTip = [pe statusMessage]; } if (cellView.imageView) { cellView.imageView.image = cellImage;