diff options
author | Adrian Kummerlaender | 2015-12-12 23:31:20 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2015-12-12 23:31:20 +0100 |
commit | e3f7344551a387653c2271ecc24d95051a04a2d1 (patch) | |
tree | 7331d80d089d70371d1784fde5153569f9c07ebd /src/list | |
parent | eaa6b0b5f43738c0386e99eeba26b44250e6136d (diff) | |
download | MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar.gz MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar.bz2 MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar.lz MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar.xz MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.tar.zst MetaTerm-e3f7344551a387653c2271ecc24d95051a04a2d1.zip |
Add initial working directory to settings handler
In addition to increasing customizability this change makes it clear that the _working directory_ property only concerns the intial working directory and is not updated if the contained process changes its directory.
Note that setting the intial working directory is broken in upstream _QMLTermWidget_ and the appropriate patch [1] is not merged at the time of this commit.
[1]: https://github.com/KnairdA/qmltermwidget/tree/initial_working_directory_fix
Diffstat (limited to 'src/list')
-rw-r--r-- | src/list/TerminalItem.qml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/list/TerminalItem.qml b/src/list/TerminalItem.qml index 2eb9dc7..91a9730 100644 --- a/src/list/TerminalItem.qml +++ b/src/list/TerminalItem.qml @@ -114,10 +114,9 @@ Item { } item.terminal = terminalComponent.createObject(elementList, { - "settings" : settings, - "program" : program, - "workingDirectory" : "$HOME", - "focus" : true + "settings" : settings, + "program" : program, + "focus" : true }); item.terminal.onFinished.connect(function() { createHistoryViewer(item.terminal.history); |