Quote:
Originally Posted by kovidgoyal
|
Unrelated FYI: At least one plugin, Find Duplicates, is negatively affected by the clear search button moving:
Code:
File "calibre_plugins.find_duplicates.action", line 56, in initialization_complete
AttributeError: 'Main' object has no attribute 'clear_button'
Code:
def initialization_complete(self):
# Delay instantiating our finder as we require access to the library view
self.duplicate_finder = DuplicateFinder(self.gui)
self.update_actions_enabled()
self.gui.clear_button.clicked.connect(self.user_has_cleared_search)
self.gui.search_restriction.currentIndexChanged[int].connect(self.user_has_changed_restriction)