From eaf1cdc82345a664047028eb23d7fbb7ed4516d4 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 3 Oct 2025 01:50:50 -0500 Subject: [PATCH] three hashes, not TWO --- src/gui/fileDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/fileDialog.cpp b/src/gui/fileDialog.cpp index 5ec09a2b8..68e275a08 100644 --- a/src/gui/fileDialog.cpp +++ b/src/gui/fileDialog.cpp @@ -193,7 +193,7 @@ bool FurnaceGUIFileDialog::openLoad(String header, std::vector filter, S // TODO: clickCallback newFilePicker->setHomeDir(getHomeDir()); - newFilePicker->open(header+"##FileDialog",path,hint,FP_FLAGS_MODAL|(allowMultiple?FP_FLAGS_MULTI_SELECT:0),filter); + newFilePicker->open(header+"###FileDialog",path,hint,FP_FLAGS_MODAL|(allowMultiple?FP_FLAGS_MULTI_SELECT:0),filter); } opened=true; return true; @@ -277,7 +277,7 @@ bool FurnaceGUIFileDialog::openSave(String header, std::vector filter, S hasError=false; newFilePicker->setHomeDir(getHomeDir()); - newFilePicker->open(header+"##FileDialog",path,hint,FP_FLAGS_MODAL|FP_FLAGS_SAVE,filter); + newFilePicker->open(header+"###FileDialog",path,hint,FP_FLAGS_MODAL|FP_FLAGS_SAVE,filter); } opened=true; return true; @@ -325,7 +325,7 @@ bool FurnaceGUIFileDialog::openSelectDir(String header, String path, double dpiS #endif newFilePicker->setHomeDir(getHomeDir()); - newFilePicker->open(header+"##FileDialog",path,hint,FP_FLAGS_MODAL|FP_FLAGS_DIR_SELECT,{}); + newFilePicker->open(header+"###FileDialog",path,hint,FP_FLAGS_MODAL|FP_FLAGS_DIR_SELECT,{}); } opened=true; return true;