Since macOS no longer displays a title for the NSOpenPanel perhaps you’d consider changing
from
[panel setTitle: juceStringToNS (owner.title)];
to:
if (owner.title.isNotEmpty())
[panel setMessage: juceStringToNS (owner.title)];
That would display the prompt above the NSOpenPanel (not the prettiest option… but it does work).
You could make this only for 10.11 and later where the title bar no longer exists.
Reference: xcode - Title bar missing in NSOpenPanel? - Stack Overflow
Cheers,
Rail
1 Like
I’ll vote for some fix like that!
ed95
4
We’ve added this to develop here:
2 Likes