Skip to content

Commit

Permalink
Merge pull request #307 from slarosa/master
Browse files Browse the repository at this point in the history
Reimplemented copy action for keybindings in console
  • Loading branch information
brushtyler committed Oct 28, 2012
2 parents f010205 + 1bac84c commit 4fa84b6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/console_output.py
Expand Up @@ -110,6 +110,9 @@ def __init__(self, parent=None):

self.runShortcut = QShortcut(QKeySequence(Qt.CTRL + Qt.Key_E), self)
self.runShortcut.activated.connect(self.enteredSelected)
# Reimplemeted copy action to prevent paste prompt (>>>,...) in command view
self.copyShortcut = QShortcut(QKeySequence(Qt.CTRL + Qt.Key_C), self)
self.copyShortcut.activated.connect(self.copy)

def refreshLexerProperties(self):
self.setLexers()
Expand Down

0 comments on commit 4fa84b6

Please sign in to comment.