From 1e7bbf2045fe65fcbce253cb83a31fd003b445e3 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 5 Sep 2025 14:01:10 -0500 Subject: [PATCH] PFD debug for issue #2670 --- extern/pfd-fixed/portable-file-dialogs.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extern/pfd-fixed/portable-file-dialogs.h b/extern/pfd-fixed/portable-file-dialogs.h index 8e5ca5079..134cc6cf7 100644 --- a/extern/pfd-fixed/portable-file-dialogs.h +++ b/extern/pfd-fixed/portable-file-dialogs.h @@ -652,6 +652,11 @@ inline void internal::executor::start(int exit_code) #else inline void internal::executor::start_process(std::vector const &command) { + printf("---- WILL EXECUTE:\n"); + for (std::string& i: command) { + printf("- %s\n",i.c_str()); + } + printf("END\n"); stop(); m_stdout.clear(); m_exit_code = -1;