mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -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];
|
NSOpenPanel* panel = [NSOpenPanel openPanel];
|
||||||
|
|
||||||
// allowed files
|
// allowed files
|
||||||
NSMutableArray* allowed;
|
NSMutableArray* allowed = [NSMutableArray array];
|
||||||
|
|
||||||
for (auto& f : options.filters) {
|
for (auto& f : options.filters) {
|
||||||
for (auto& i : f.files) {
|
for (auto& i : f.files) {
|
||||||
|
|
Loading…
Reference in a new issue