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
Graphics
Gwenview
Commits
aabf8769
Commit
aabf8769
authored
Dec 30, 2020
by
Piotr Henryk Dabrowski
Browse files
use new 'edit-move' icon for moving files, 'go-jump' as fallback
parent
3024a6ee
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/fileoperations.cpp
View file @
aabf8769
...
...
@@ -198,7 +198,7 @@ void showMenuForDroppedUrls(QWidget* parent, const QList<QUrl>& urlList, const Q
QMenu
menu
(
parent
);
QAction
*
moveAction
=
menu
.
addAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"go-jump"
)),
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-move"
),
QIcon
::
fromTheme
(
QStringLiteral
(
"go-jump"
))
)
,
i18n
(
"Move Here"
));
QAction
*
copyAction
=
menu
.
addAction
(
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-copy"
)),
...
...
app/fileopscontextmanageritem.cpp
View file @
aabf8769
...
...
@@ -156,7 +156,7 @@ FileOpsContextManagerItem::FileOpsContextManagerItem(ContextManager* manager, QL
mMoveToAction
=
file
->
addAction
(
QStringLiteral
(
"file_move_to"
),
this
,
SLOT
(
moveTo
()));
mMoveToAction
->
setText
(
i18nc
(
"Verb"
,
"Move To..."
));
mMoveToAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"go-jump"
)));
mMoveToAction
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"edit-move"
),
QIcon
::
fromTheme
(
QStringLiteral
(
"go-jump"
)))
)
;
actionCollection
->
setDefaultShortcut
(
mMoveToAction
,
Qt
::
Key_F8
);
mLinkToAction
=
file
->
addAction
(
QStringLiteral
(
"file_link_to"
),
this
,
SLOT
(
linkTo
()));
...
...
Write
Preview
Supports
Markdown
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