diff options
author | Ken Moore <moorekou@gmail.com> | 2016-04-14 13:40:45 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-04-14 13:40:45 -0400 |
commit | 33859f365339e3c448085e6a3c5961220108850a (patch) | |
tree | f589c804979af6a4998f75b96e8e1696087bd431 /desktop-utilities/lumina-terminal/TerminalWidget.cpp | |
parent | Add a start for a Qt text editor (mainly for playing around - but it could tu... (diff) | |
download | lumina-33859f365339e3c448085e6a3c5961220108850a.tar.gz lumina-33859f365339e3c448085e6a3c5961220108850a.tar.bz2 lumina-33859f365339e3c448085e6a3c5961220108850a.zip |
Clean up a bit more of the terminal widget/interactions.
Diffstat (limited to 'desktop-utilities/lumina-terminal/TerminalWidget.cpp')
-rw-r--r-- | desktop-utilities/lumina-terminal/TerminalWidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop-utilities/lumina-terminal/TerminalWidget.cpp b/desktop-utilities/lumina-terminal/TerminalWidget.cpp index 0faa45ff..14f5dc91 100644 --- a/desktop-utilities/lumina-terminal/TerminalWidget.cpp +++ b/desktop-utilities/lumina-terminal/TerminalWidget.cpp @@ -413,10 +413,11 @@ void TerminalWidget::keyPressEvent(QKeyEvent *ev){ if(ev->text().isEmpty() || ev->text()=="\b" ){ sendKeyPress(ev->key()); }else{ - if(ev->key()==Qt::Key_Enter || ev->key()==Qt::Key_Return){ + if( (ev->key()==Qt::Key_Enter || ev->key()==Qt::Key_Return) && !this->textCursor().atEnd() ){ sendKeyPress(Qt::Key_End); //just in case the cursor is not at the end (TTY will split lines and such - ugly) } QByteArray ba; ba.append(ev->text()); //avoid any byte conversions + //qDebug() << "Forward Input:" << ba; PROC->writeTTY(ba); } |