diff options
| author | Nate Graham <[email protected]> | 2021-11-29 10:15:41 -0700 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2021-11-29 10:23:06 -0700 |
| commit | 4b530c91c1042f87eb651d6c9c7c8b174508a134 (patch) | |
| tree | ff497b899e4ce5204c3eb59cb2110b2a2c208ba1 /src/views/dolphinviewactionhandler.cpp | |
| parent | ec8f757f9c7b5eafcacbd9671df283d3f20f8a19 (diff) | |
Use new "edit-copy-path" icon for "Copy Location" menu item
This is safe to change without a fallback icon explicitly specified
because if it doesn't exist in the active icon theme, it will fall back
to edit-copy which is a standard FreeDesktop icon name present in
every icon theme ever.
CCBUG: 423937
Diffstat (limited to 'src/views/dolphinviewactionhandler.cpp')
| -rw-r--r-- | src/views/dolphinviewactionhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinviewactionhandler.cpp b/src/views/dolphinviewactionhandler.cpp index 90109605b..47247ec35 100644 --- a/src/views/dolphinviewactionhandler.cpp +++ b/src/views/dolphinviewactionhandler.cpp @@ -157,7 +157,7 @@ void DolphinViewActionHandler::createActions() "This will copy the path of the first selected item into the clipboard." )); - copyPathAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-copy"))); + copyPathAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-copy-path"))); m_actionCollection->setDefaultShortcuts(copyPathAction, {Qt::CTRL | Qt::ALT | Qt::Key_C}); connect(copyPathAction, &QAction::triggered, this, &DolphinViewActionHandler::slotCopyPath); |
