mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
System File Chooser: fix crash on macOS 15.x
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -387,7 +387,7 @@ JNIEXPORT jobjectArray JNICALL Java_com_formdev_flatlaf_ui_FlatNativeMacLibrary_
|
|||||||
|
|
||||||
static NSArray* getDialogURLs( NSSavePanel* dialog ) {
|
static NSArray* getDialogURLs( NSSavePanel* dialog ) {
|
||||||
if( [dialog isKindOfClass:[NSOpenPanel class]] )
|
if( [dialog isKindOfClass:[NSOpenPanel class]] )
|
||||||
return static_cast<NSOpenPanel*>(dialog).URLs;
|
return [[NSArray alloc] initWithArray: static_cast<NSOpenPanel*>(dialog).URLs];
|
||||||
|
|
||||||
NSURL* url = dialog.URL;
|
NSURL* url = dialog.URL;
|
||||||
// use '[[NSArray alloc] initWithObject:url]' here because '@[url]' crashes on macOS 10.14
|
// use '[[NSArray alloc] initWithObject:url]' here because '@[url]' crashes on macOS 10.14
|
||||||
|
|||||||
Reference in New Issue
Block a user