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
50d3097a
Commit
50d3097a
authored
Aug 06, 2022
by
Pablo Rauzy
Committed by
Christoph Cullmann
Aug 14, 2022
Browse files
oops: fix eager search-and-replace of the icon name
parent
f9e382a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
addons/keyboardmacros/keyboardmacrosplugin.cpp
View file @
50d3097a
...
...
@@ -501,7 +501,7 @@ KeyboardMacrosPluginView::KeyboardMacrosPluginView(KeyboardMacrosPlugin *plugin,
// create wipe named menu
m_wipeMenu
=
new
KActionMenu
(
i18n
(
"&Wipe Named Macro..."
),
this
);
m_wipeMenu
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"
wip
e"
)));
m_wipeMenu
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"
delet
e"
)));
actionCollection
()
->
addAction
(
QStringLiteral
(
"keyboardmacros_named_wipe"
),
m_wipeMenu
);
m_wipeMenu
->
setToolTip
(
i18n
(
"Wipe a named macro."
));
m_wipeMenu
->
setEnabled
(
!
plugin
->
m_namedMacros
.
isEmpty
());
...
...
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