aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/main_window/MainWindowFileSlotFunction.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-24 06:32:56 +0000
committersaturneric <[email protected]>2024-01-24 06:32:56 +0000
commit38c9d2ce81b2c4d33caa120d07fe9605525722bf (patch)
treeb8624478413ea55341bc58612b7300a83d7fdc62 /src/ui/main_window/MainWindowFileSlotFunction.cpp
parentfix: decrypt tar.gpg but output path is incorrect (diff)
downloadGpgFrontend-38c9d2ce81b2c4d33caa120d07fe9605525722bf.tar.gz
GpgFrontend-38c9d2ce81b2c4d33caa120d07fe9605525722bf.zip
fix: improve file page
Diffstat (limited to 'src/ui/main_window/MainWindowFileSlotFunction.cpp')
-rw-r--r--src/ui/main_window/MainWindowFileSlotFunction.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/main_window/MainWindowFileSlotFunction.cpp b/src/ui/main_window/MainWindowFileSlotFunction.cpp
index c2465d86..c1b1bba1 100644
--- a/src/ui/main_window/MainWindowFileSlotFunction.cpp
+++ b/src/ui/main_window/MainWindowFileSlotFunction.cpp
@@ -280,6 +280,7 @@ void MainWindow::SlotFileDecrypt(const QString& path) {
}
auto out_path = SetExtensionOfOutputFile(path, kDECRYPT, true);
+ GF_UI_LOG_DEBUG("file decrypt target output path: {}", out_path);
if (QFileInfo(out_path).exists()) {
auto ret = QMessageBox::warning(
this, tr("Warning"),
@@ -329,6 +330,7 @@ void MainWindow::SlotArchiveDecrypt(const QString& path) {
}
auto out_path = SetExtensionOfOutputFileForArchive(path, kDECRYPT, true);
+ GF_UI_LOG_DEBUG("archive decrypt target output path: {}", out_path);
if (QFileInfo(out_path).exists()) {
auto ret = QMessageBox::warning(
this, tr("Warning"),