mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Prevent accidental deletion of home directory in Terminal Panel
The protection against unwanted execution of "rm -rf" when changing the directory while entering the command did not work if there was never any automatic "cd" command sent to the terminal before. This patch ensures that Terminal Panel's member m_clearTerminal is false after the initialization of the panel, such that the protection is effective after that. BUG: 316300 FIXED-IN: 4.10.2 REVIEW: 109431
This commit is contained in:
parent
de34d5edc9
commit
6be6988fb8
1 changed files with 1 additions and 0 deletions
|
@ -144,6 +144,7 @@ void TerminalPanel::changeDir(const KUrl& url)
|
|||
void TerminalPanel::sendCdToTerminal(const QString& dir)
|
||||
{
|
||||
if (dir == m_konsolePartCurrentDirectory) {
|
||||
m_clearTerminal = false;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue