electrum

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

commit 326ddaf4100d4a2d47ea053925aa169513c9d464
parent 8bb4628f112ad87f7fb7dc501581f59cb0fe7389
Author: ThomasV <thomasv@gitorious>
Date:   Fri,  1 Feb 2013 18:32:56 +0100

clear window on ctrl-L

Diffstat:
Mlib/qt_console.py | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lib/qt_console.py b/lib/qt_console.py @@ -26,6 +26,10 @@ class Console(QtGui.QPlainTextEdit): self.appendPlainText(message) self.newPrompt() + def clear(self): + self.setPlainText('') + self.newPrompt() + def newPrompt(self): if self.construct: prompt = '.' * len(self.prompt) @@ -160,8 +164,8 @@ class Console(QtGui.QPlainTextEdit): elif event.key() == QtCore.Qt.Key_Down: self.setCommand(self.getNextHistoryEntry()) return - #elif event.key() == QtCore.Qt.Key_D and event.modifiers() == QtCore.Qt.ControlModifier: - # self.close() + elif event.key() == QtCore.Qt.Key_L and event.modifiers() == QtCore.Qt.ControlModifier: + self.clear() super(Console, self).keyPressEvent(event)