Quote:
Originally Posted by ownedbycats
Yes, the bulk metadata edit fixes it.
I tried making this custom AC module, but it gave me an error:
Code:
from calibre_plugins.action_chains.actions.base import ChainAction
class RefreshAction(ChainAction):
name = 'Refresh GUI'
def run(self, gui, settings, chain):
gui.current_db().refresh()
|
Looking at calibre's code I think it should be
Code:
gui.current_db().data.refresh()
Alternatively, try
From what I see this method refreshes all the various bits of calibre including the tag browser, the database, and the gui. It also does a resort.