Quote:
Originally Posted by thousand
Hi. I've created a custom Yes/No column called Read. It works great in normal library (list) view mode, but is there a way to show the checkmark next to the title in Cover Grid, or superimposed over the cover image, or anything like that?
It'd be nice to have more control over the cover grid.
Thank you!
|
Preferences > Look & Feel > Cover Grid > Emblems
You can find a checkmark at
C:\Program Files\Calibre2\app\resources\images\ok.png (default Windows path if you're using 64-bit).
I use an advanced rule to display an icon depending on reading status:
Code:
program:
if $#currentlyreading then 'bookmark-48.png'
elif $#readorder then 'list.png'
elif check_yes_no('#read', 0, 0, 1) then 'ok.png'
elif check_yes_no('#read', 0, 1, 0) then 'list_remove.png'
fi