From c07b268288c01489a46333eef5c7361885df5774 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 20 Jan 2022 18:18:05 -0800 Subject: [PATCH] Playlist View: Adjust threshold for expansion tooltip assignment --- Playlist/PlaylistController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index 9c56fbbc6..49a53de91 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -328,7 +328,7 @@ static inline void dispatch_sync_reentrant(dispatch_queue_t queue, dispatch_bloc cellView.textField.stringValue = cellText; cellView.textField.alignment = cellTextAlignment; - if (cellView.textField.intrinsicContentSize.width > cellView.textField.frame.size.width - 8) + if (cellView.textField.intrinsicContentSize.width > cellView.textField.frame.size.width - 4) cellView.textField.toolTip = cellText; else cellView.textField.toolTip = [pe statusMessage];