From 23fade7bb943882d0a84cccc3d25a052ec25edd6 Mon Sep 17 00:00:00 2001 From: El Thoro Date: Thu, 7 Aug 2025 03:32:24 +0200 Subject: [PATCH] Fix 3135 again (#4122) --- src/utils/screenshotsaver.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/screenshotsaver.cpp b/src/utils/screenshotsaver.cpp index 2c7669b1..b67dad95 100644 --- a/src/utils/screenshotsaver.cpp +++ b/src/utils/screenshotsaver.cpp @@ -268,6 +268,9 @@ bool saveToFilesystemGUI(const QPixmap& capture) AbstractLogger().attachNotificationPath(savePath) << msg; if (config.copyPathAfterSave()) { +#ifdef Q_OS_WIN + savePath.replace('/', '\\'); +#endif FlameshotDaemon::copyToClipboard( savePath, QObject::tr("Path copied to clipboard as ") + savePath); }