diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-09 10:42:27 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-09 10:42:27 +0200 |
commit | 3c4c79c65a70b6e32eac8f1b8cbe9531660d2492 (patch) | |
tree | 76217813bfe472c2e02c7533ece86981723f59f1 /editor/filesystem_dock.cpp | |
parent | 9cba6ec216e478c10f0e7dded7b0adb042983996 (diff) | |
parent | 7984043768c4f089a681b3f5bed859208a01b601 (diff) | |
download | redot-engine-3c4c79c65a70b6e32eac8f1b8cbe9531660d2492.tar.gz |
Merge pull request #89803 from timothyqiu/xfce4-terminal
Add necessary flags when opening directory with xfce4-terminal
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 233f20a8b3..2087c8cee6 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2250,6 +2250,8 @@ void FileSystemDock::_file_option(int p_option, const Vector<String> &p_selected terminal_emulator_args.push_back("--working-directory"); } else if (chosen_terminal_emulator.ends_with("urxvt")) { terminal_emulator_args.push_back("-cd"); + } else if (chosen_terminal_emulator.ends_with("xfce4-terminal")) { + terminal_emulator_args.push_back("--working-directory"); } } #endif |