Fix #1910883 [can't automatically scroll down the list of icon rules](https://bugs.launchpad.net/calibre/+bug/1910883)

This commit is contained in:
Kovid Goyal 2021-01-20 13:12:05 +05:30
parent 1c12b0efe6
commit c86bcede66
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -891,6 +891,7 @@ class RulesView(QListView): # {{{
if self.model() and new.isValid():
_, _, rule = self.model().data(new, Qt.ItemDataRole.UserRole)
self.enable_convert_buttons_function(isinstance(rule, Rule))
return super().currentChanged(new, prev)
# }}}