Quote:
Originally Posted by ownedbycats
A custom module. I use it to re-sort books at the end of a chain.
Code:
from calibre_plugins.action_chains.actions.base import ChainAction
class RefreshAction(ChainAction):
name = 'Refresh View'
def run(self, gui, settings, chain_loop):
gui.current_view().resort()
|
I can read it, but I don't understand it.

What kind of re-sort is this code doing?