┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2023-09-10 14:58:36 +0200
committerMéven Car <[email protected]>2023-09-10 14:58:36 +0200
commit5c33e0211ff09f37adb5b48c59cf15b67c0059dc (patch)
tree41d1d88f22c4998fef6325d45262c4e5daca4c8f /src
parent3ccd3e820c8d42996835e8f1ff281369c1a6bfd2 (diff)
Copy Location: Make sure to export path with native separators
Diffstat (limited to 'src')
-rw-r--r--src/views/dolphinview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index d0db814e4..21e23d5ac 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -2283,7 +2283,7 @@ void DolphinView::copyPathToClipboard()
if (clipboard == nullptr) {
return;
}
- clipboard->setText(path);
+ clipboard->setText(QDir::toNativeSeparators(path));
}
void DolphinView::slotIncreaseZoom()