mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
because we can't have a bigger view in the taglist on osx, use bigger list
This commit is contained in:
parent
f8d13106fb
commit
0e2bcfc173
1 changed files with 3 additions and 1 deletions
|
@ -435,8 +435,10 @@ class EditDeck(QMainWindow):
|
|||
def drawTags(self):
|
||||
self.dialog.tagList.setMaxVisibleItems(30)
|
||||
if not sys.platform.startswith("darwin"):
|
||||
self.dialog.tagList.view().setFixedWidth(130)
|
||||
self.dialog.tagList.view().setFixedWidth(200)
|
||||
self.dialog.tagList.setFixedWidth(130)
|
||||
else:
|
||||
self.dialog.tagList.setFixedWidth(200)
|
||||
self.dialog.tagList.clear()
|
||||
alltags = [None, "Marked", None, None, "Leech", None, None]
|
||||
# system tags
|
||||
|
|
Loading…
Reference in a new issue