Playlist View: Adjust threshold for expansion tooltip assignment
This commit is contained in:
parent
4e918fc868
commit
c07b268288
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ static inline void dispatch_sync_reentrant(dispatch_queue_t queue, dispatch_bloc
|
||||||
cellView.textField.stringValue = cellText;
|
cellView.textField.stringValue = cellText;
|
||||||
cellView.textField.alignment = cellTextAlignment;
|
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;
|
cellView.textField.toolTip = cellText;
|
||||||
else
|
else
|
||||||
cellView.textField.toolTip = [pe statusMessage];
|
cellView.textField.toolTip = [pe statusMessage];
|
||||||
|
|
Loading…
Reference in a new issue