Skip to content

Commit d576d16

Browse files
committed
ScriptCompleter: use default completion mode
Using UnfilteredPopupCompletion produces a (very) long list of choices, rather than limiting choices to selected prefix.
1 parent 6eca60a commit d576d16

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

picard/ui/widgets/scripttextedit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def highlightBlock(self, text):
175175
class ScriptCompleter(QCompleter):
176176
def __init__(self, parent=None):
177177
super().__init__(self.choices, parent)
178-
self.setCompletionMode(QCompleter.CompletionMode.UnfilteredPopupCompletion)
179178
self.last_selected = ''
180179
self.highlighted.connect(self.set_highlighted)
181180

0 commit comments

Comments
 (0)