mirror of
https://github.com/KDE/konsole.git
synced 2026-06-11 23:45:09 -04:00
Fix previous commits changing some \r to \n
f016a0f874 incorrectly changed all
sendTextToTerminal to send an \n - some previously had \r
This commit is contained in:
@@ -499,7 +499,7 @@ Session* MainWindow::createSSHSession(Profile::Ptr profile, const QUrl& url)
|
||||
sshCommand += url.host();
|
||||
}
|
||||
|
||||
session->sendTextToTerminal(sshCommand, true);
|
||||
session->sendTextToTerminal(sshCommand, '\r');
|
||||
|
||||
// create view before starting the session process so that the session
|
||||
// doesn't suffer a change in terminal size right after the session
|
||||
|
||||
Reference in New Issue
Block a user