electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 338b004ab383fc36106669765f841bb68eeea76d
parent 89df5801499864753755cd069a267addbf7003e1
Author: thomasv <thomasv@gitorious>
Date:   Wed, 27 Feb 2013 12:38:04 +0100

sort completions

Diffstat:
Mlib/qt_console.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/qt_console.py b/lib/qt_console.py @@ -265,6 +265,7 @@ class Console(QtGui.QPlainTextEdit): xx = prefix + x if xx.startswith(lastword): completions.append(xx) + completions.sort() if not completions: self.hide_completions()