mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
fix pickFile on macos
This commit is contained in:
parent
2e9a3b213b
commit
8842e8f793
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void utils::web::openLinkInBrowser(std::string const& url) {
|
|||
NSOpenPanel* panel = [NSOpenPanel openPanel];
|
||||
|
||||
// allowed files
|
||||
NSMutableArray* allowed;
|
||||
NSMutableArray* allowed = [NSMutableArray array];
|
||||
|
||||
for (auto& f : options.filters) {
|
||||
for (auto& i : f.files) {
|
||||
|
|
Loading…
Reference in a new issue