Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
1e4b8768
Commit
1e4b8768
authored
Aug 29, 2021
by
Christopher Yeleighton
Browse files
Make working directory gadget pick a directory.
parent
a0664e7a
Pipeline
#77182
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
addons/externaltools/kateexternaltoolsconfigwidget.cpp
View file @
1e4b8768
...
...
@@ -147,6 +147,7 @@ KateExternalToolServiceEditor::KateExternalToolServiceEditor(KateExternalTool *t
ui
.
edtArgs
->
setText
(
m_tool
->
arguments
);
ui
.
edtInput
->
setText
(
m_tool
->
input
);
ui
.
edtWorkingDir
->
setText
(
m_tool
->
workingDir
);
ui
.
edtWorkingDir
->
setMode
(
KFile
::
Directory
|
KFile
::
ExistingOnly
|
KFile
::
LocalOnly
);
ui
.
edtMimeType
->
setText
(
m_tool
->
mimetypes
.
join
(
QStringLiteral
(
"; "
)));
ui
.
cmbSave
->
setCurrentIndex
(
static_cast
<
int
>
(
m_tool
->
saveMode
));
ui
.
chkReload
->
setChecked
(
m_tool
->
reload
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment