Copy Location: Make sure to export path with native separators

(cherry picked from commit 5c33e0211f)
This commit is contained in:
Méven Car 2023-09-10 14:58:36 +02:00
parent 6fe9932a17
commit 967189bc83

View file

@ -2323,7 +2323,7 @@ void DolphinView::copyPathToClipboard()
if (clipboard == nullptr) { if (clipboard == nullptr) {
return; return;
} }
clipboard->setText(path); clipboard->setText(QDir::toNativeSeparators(path));
} }
void DolphinView::slotIncreaseZoom() void DolphinView::slotIncreaseZoom()