From 013a9ff2164535d3c75a33e99e86cdbbd03ad1d5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 20 Oct 2014 06:17:20 +0200 Subject: [PATCH] Don't update completion twice when setting cmd text. See #190. --- qutebrowser/widgets/statusbar/command.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qutebrowser/widgets/statusbar/command.py b/qutebrowser/widgets/statusbar/command.py index 698b94273..211a0c4aa 100644 --- a/qutebrowser/widgets/statusbar/command.py +++ b/qutebrowser/widgets/statusbar/command.py @@ -148,8 +148,9 @@ class Command(misc.MinimalLineEditMixin, misc.CommandLineEdit): """ old_text = self.text() self.setText(text) - if old_text != text: - # We want the completion to pop out here. + if old_text != text and len(old_text) == len(text): + # We want the completion to pop out here, but the cursor position + # won't change, so we make sure we emit update_completion. self.update_completion.emit(self.prefix(), self.split(), self._cursor_part) self.setFocus()