Commit 8dbce44c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx: Use font from the Nib in the playlist.

parent 64680e43
......@@ -297,8 +297,7 @@
}
free( psz_artist );
}
return( o_value );
return o_value;
}
@end
......@@ -1289,11 +1288,11 @@
[item pointerValue] checkItemExistence: YES]
|| [o_playing_item isEqual: item] )
{
[cell setFont: [NSFont boldSystemFontOfSize: 0]];
[cell setFont: [[NSFontManager sharedFontManager] convertFont:[cell font] toHaveTrait:NSBoldFontMask]];
}
else
{
[cell setFont: [NSFont systemFontOfSize: 0]];
[cell setFont: [[NSFontManager sharedFontManager] convertFont:[cell font] toNotHaveTrait:NSBoldFontMask]];
}
vlc_object_release( p_playlist );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment