Skip to content
GitLab
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
2e25c533
Commit
2e25c533
authored
Nov 05, 2022
by
Eric Armbruster
🍁
Browse files
Fix action name typo
A copy paste oversight
parent
78411e06
Pipeline
#261641
passed with stage
in 19 minutes and 17 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
addons/filetree/katefiletreeplugin.cpp
View file @
2e25c533
...
...
@@ -265,7 +265,7 @@ void KateFileTreePluginView::setupActions()
aSave
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-save"
)));
auto
aSaveAs
=
actionCollection
()
->
addAction
(
QStringLiteral
(
"filetree_save_as"
),
this
,
SLOT
(
slotDocumentSaveAs
()));
aSave
->
setText
(
i18n
(
"Save As"
));
aSave
As
->
setText
(
i18n
(
"Save As"
));
aSaveAs
->
setToolTip
(
i18n
(
"Save the current document under a new name"
));
aSaveAs
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-save-as"
)));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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