From 02a9cdb0644b659b12633ffbf3f496dfa993e5cf Mon Sep 17 00:00:00 2001 From: J-D-K Date: Thu, 4 Sep 2025 16:33:26 -0400 Subject: [PATCH] Copy option fix. --- source/appstates/FileOptionState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/appstates/FileOptionState.cpp b/source/appstates/FileOptionState.cpp index 0c8fd3f..d71fe15 100644 --- a/source/appstates/FileOptionState.cpp +++ b/source/appstates/FileOptionState.cpp @@ -179,7 +179,7 @@ void FileOptionState::copy_target() } fslib::Path fullDest{destPath}; - if (destSelected == 0) { fullDest /= sourceDir[sourceIndex]; } + if (destSelected == 0 && sourceSelected > 1) { fullDest /= sourceDir[sourceIndex]; } if (destSelected > 1) { fullDest /= destDir[destIndex];