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
PIM
KDE PIM Add-ons
Commits
470895c9
Commit
470895c9
authored
Feb 13, 2022
by
Laurent Montel
😁
Browse files
Show command line
parent
6717db92
Pipeline
#136687
failed with stage
in 1 minute and 52 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerplugins/externalscriptplugin/configuredialog/viewerpluginexternalconfigurewidget.cpp
View file @
470895c9
...
...
@@ -41,7 +41,11 @@ void ViewerPluginExternalScriptItem::setScriptInfo(const ViewerPluginExternalScr
{
mScriptInfo
=
scriptInfo
;
setText
(
mScriptInfo
.
name
());
setToolTip
(
mScriptInfo
.
description
());
QString
commandLine
=
mScriptInfo
.
executable
();
if
(
!
mScriptInfo
.
commandLine
().
isEmpty
())
{
commandLine
+=
QLatin1Char
(
' '
)
+
mScriptInfo
.
commandLine
();
}
setToolTip
(
mScriptInfo
.
description
()
+
QStringLiteral
(
" (%1)"
).
arg
(
commandLine
));
}
ViewerPluginExternalScriptInfo
ViewerPluginExternalScriptItem
::
scriptInfo
()
const
...
...
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