┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinview.cpp
diff options
context:
space:
mode:
authorNate Graham <[email protected]>2020-06-01 09:58:25 -0600
committerNate Graham <[email protected]>2020-06-01 09:58:25 -0600
commit70b3f61e1efde2837d53a86e39368f44cbef5d19 (patch)
tree0773c8a627b5eb9b2c5ca8e5117064f2b4e6bd70 /src/views/dolphinview.cpp
parent29e6cf01df755724a629203964c9b61cd2f383c4 (diff)
Show progress when duplicating items
For unknown reasons, when I implemented this feature, I turned off progress notifications. I don't think this makes any sense, and we just got a bug report about it. Accordingly, this patches turns on progress notifications. BUG: 422335 FIXED-IN: 20.04.2
Diffstat (limited to 'src/views/dolphinview.cpp')
-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 d8f2aab93..2caa8ec68 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -740,7 +740,7 @@ void DolphinView::duplicateSelectedItems()
duplicateURL.setPath(originalDirectoryPath + i18nc("<filename> copy", "%1 copy", originalFilenameWithoutExtension) + originalExtension);
}
- KIO::CopyJob* job = KIO::copyAs(originalURL, duplicateURL, KIO::HideProgressInfo);
+ KIO::CopyJob* job = KIO::copyAs(originalURL, duplicateURL);
KJobWidgets::setWindow(job, this);
if (job) {