Playlist View: Adjust threshold for expansion tooltip assignment

CQTexperiment
Christopher Snowhill 2022-01-20 18:18:05 -08:00
parent 4e918fc868
commit c07b268288
1 changed files with 1 additions and 1 deletions

View File

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