From 9db9d144b9e8b795677b3d679fda2e84370bccef Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 2 Mar 2018 12:19:10 +1000 Subject: [PATCH] don't show completion dropdown on focus in obscures buttons and gives the impression something needs to be chosen https://anki.tenderapp.com/discussions/ankidesktop/27132-anki-bug-with-tags-and-decks#comment_44820594 --- aqt/tagedit.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aqt/tagedit.py b/aqt/tagedit.py index 547e9055e..547e7c164 100644 --- a/aqt/tagedit.py +++ b/aqt/tagedit.py @@ -33,7 +33,6 @@ class TagEdit(QLineEdit): def focusInEvent(self, evt): QLineEdit.focusInEvent(self, evt) - self.showCompleter() def keyPressEvent(self, evt): if evt.key() in (Qt.Key_Up, Qt.Key_Down):