When showing NSSavePanel when the application is in the background, I get the following error:
RVS:__54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0319 : Timeout occured while waiting for the window Remote Window Controller requested NSRequestRetryActivateSharedwindow...
In addition, the panel is not displayed and runModal returns NSFileHandlingPanelCancelButton .
The application is isolated. This is the code that the panel creates:
NSSavePanel *panel = [NSSavePanel savePanel]; NSInteger result = [panel runModal]; if (result == NSFileHandlingPanelOKButton) {
What could be the problem?
If the application is in the foreground, the panel is displayed without errors.
source share