mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 02:13:47 +02:00
Fix #1878992 [[Enhancement - Virtual library] Select and deselect entries by clicking when creating a Virtual library based on a category](https://bugs.launchpad.net/calibre/+bug/1878992)
This commit is contained in:
parent
41db0eb6e3
commit
47f3283ab1
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ def __init__(self, names, txt, parent=None):
|
|||
|
||||
self._names = QListWidget(self)
|
||||
self._names.addItems(sorted(names, key=sort_key))
|
||||
self._names.setSelectionMode(self._names.ExtendedSelection)
|
||||
self._names.setSelectionMode(self._names.MultiSelection)
|
||||
l.addWidget(self._names)
|
||||
|
||||
self._or = QRadioButton(_('Match any of the selected %s')%txt)
|
||||
|
|
|
|||
Loading…
Reference in a new issue