# HG changeset patch # User Jacob Dawid # Date 1303919333 -7200 # Node ID fc754f56453e2e197557869cfc1d8cb773f40a9f # Parent 0c896eff7a8015c369ddd766bfe11171ec050282 Copy-Paste works with Ctrl+C and Ctrl+V, but pasting is not perfect. diff --git a/gui//src/TerminalDisplay.cpp b/gui//src/TerminalDisplay.cpp --- a/gui//src/TerminalDisplay.cpp +++ b/gui//src/TerminalDisplay.cpp @@ -2467,14 +2467,14 @@ { bool emitKeyPressSignal = true; - if(event->modifiers() == Qt::ControlModifier | Qt::ControlModifier) + if(event->modifiers() == Qt::ControlModifier) { switch(event->key()) { case Qt::Key_C: copyClipboard(); break; case Qt::Key_V: - //pasteClipboard(); + pasteClipboard(); break; }; } else if ( event->modifiers() == Qt::ShiftModifier ) {