Fixed issues hopefully

This commit is contained in:
AlexandreRouma
2022-02-24 21:01:51 +01:00
parent 2779516378
commit 9bbc50ff3c
8 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@
FileSelect::FileSelect(std::string defaultPath, std::vector<std::string> filter) {
_filter = filter;
root = core::args["root"];
root = (std::string)core::args["root"];
setPath(defaultPath);
}

View File

@ -5,7 +5,7 @@
#include <core.h>
FolderSelect::FolderSelect(std::string defaultPath) {
root = core::args["root"];
root = (std::string)core::args["root"];
setPath(defaultPath);
}