mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix bug introduced by changing the name of a keyword parameter
This commit is contained in:
parent
26f5642e02
commit
0071554a9e
@ -36,7 +36,7 @@ class TagsView(QTreeView): # {{{
|
|||||||
|
|
||||||
def set_database(self, db, tag_match, popularity, restriction):
|
def set_database(self, db, tag_match, popularity, restriction):
|
||||||
self.hidden_categories = config['tag_browser_hidden_categories']
|
self.hidden_categories = config['tag_browser_hidden_categories']
|
||||||
self._model = TagsModel(db, parent=self, hidden_columns=self.hidden_categories)
|
self._model = TagsModel(db, parent=self, hidden_categories=self.hidden_categories)
|
||||||
self.popularity = popularity
|
self.popularity = popularity
|
||||||
self.restriction = restriction
|
self.restriction = restriction
|
||||||
self.tag_match = tag_match
|
self.tag_match = tag_match
|
||||||
|
Loading…
x
Reference in New Issue
Block a user