Skip to content

Commit e7fad39

Browse files
committed
Don't manually echo the input to the output box for non-masked input, since the process will echo it back.
1 parent 07579ba commit e7fad39

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/mainwindow.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4151,9 +4151,6 @@ void MainWindow::lineEdit_returnPressed()
41514151
return;
41524152
}
41534153
cmd.write(input.toUtf8() + '\n');
4154-
if (!wasMasked) {
4155-
ui->outputBox->appendPlainText(input + '\n');
4156-
}
41574154
ui->lineEdit->clear();
41584155
ui->lineEdit->setFocus();
41594156
}

0 commit comments

Comments
 (0)