Star icons more narrow to not bloat thumbnail size

The star icons used for ranking thumbnails are now of the "narrow" size,
i.e. 10x16px. This change removes mostly the padding, which caused the
ranking buttons to bloat the minimum thumbnail size to an unacceptably
large size.
This commit is contained in:
Morgan Hardwood
2018-08-13 22:47:41 +02:00
parent f70cdd0116
commit faaaa016f0
25 changed files with 631 additions and 9 deletions

View File

@@ -42,9 +42,9 @@ FileThumbnailButtonSet::FileThumbnailButtonSet (FileBrowserEntry* myEntry)
{
if (!iconsLoaded) {
unRankIcon = RTImage::createFromPng ("star-hollow-small.png");
rankIcon = RTImage::createFromPng ("star-gold-small.png");
gRankIcon = RTImage::createFromPng ("star-small.png");
unRankIcon = RTImage::createFromPng ("star-hollow-narrow.png");
rankIcon = RTImage::createFromPng ("star-gold-narrow.png");
gRankIcon = RTImage::createFromPng ("star-narrow.png");
trashIcon = RTImage::createFromPng ("trash-small.png");
unTrashIcon = RTImage::createFromPng ("trash-remove-small.png");
processIcon = RTImage::createFromPng ("gears-small.png");